TableOperation.Retrieve<TElement> Method (String, String)

 

Creates a new table operation that retrieves the contents of the given entity in a table.

Namespace:   Microsoft.WindowsAzure.Storage.Table
Assembly:  Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)

Syntax

public static TableOperation Retrieve<TElement>(
    string partitionKey,
    string rowkey
)
where TElement : ITableEntity
Public Shared Function Retrieve(Of TElement As ITableEntity) (
    partitionKey As String,
    rowkey As String
) As TableOperation

Parameters

  • partitionKey
    Type: System.String

    A string containing the partition key of the entity to retrieve.

  • rowkey
    Type: System.String

    A string containing the row key of the entity to retrieve.

Return Value

Type: Microsoft.WindowsAzure.Storage.Table.TableOperation

The TableOperation object.

Type Parameters

  • TElement
    The class of type for the entity to retrieve.

See Also

Retrieve Overload
TableOperation Class
Microsoft.WindowsAzure.Storage.Table Namespace

Return to top