TableOperation.Retrieve<TResult> Method (String, String, EntityResolver<TResult>)

 

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<TResult>(
    string partitionKey,
    string rowkey,
    EntityResolver<TResult> resolver
)
Public Shared Function Retrieve(Of TResult) (
    partitionKey As String,
    rowkey As String,
    resolver As EntityResolver(Of TResult)
) 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

  • TResult
    The return type which the specified EntityResolver<T> will resolve the given entity to.

See Also

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

Return to top