TableOperation.Retrieve 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(
    string partitionKey,
    string rowkey
)
Public Shared Function Retrieve (
    partitionKey As String,
    rowkey As String
) As TableOperation

Parameters

  • partitionKey
    Type: System.String

    A string containing the partition key of the entity to be retrieved.

  • rowkey
    Type: System.String

    A string containing the row key of the entity to be retrieved.

Return Value

Type: Microsoft.WindowsAzure.Storage.Table.TableOperation

The TableOperation object.

See Also

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

Return to top