Adds a
TableOperation to the
TableBatchOperation that retrieves an entity with the specified partition key and row key.
Namespace: Microsoft.WindowsAzure.Storage.Table
Assembly: Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)
Usage
Visual Basic |
---|
Dim instance As TableBatchOperation
Dim partitionKey As String
Dim rowKey As String
instance.Retrieve(partitionKey, rowKey) |
Syntax
Visual Basic |
---|
Public Sub Retrieve ( _
partitionKey As String, _
rowKey As String _
) |
C# |
---|
public void Retrieve (
string partitionKey,
string rowKey
) |
C++ |
---|
public:
void Retrieve (
String^ partitionKey,
String^ rowKey
) |
J# |
---|
public void Retrieve (
String partitionKey,
String rowKey
) |
JScript |
---|
public function Retrieve (
partitionKey : String,
rowKey : String
) |
Parameters
- partitionKey
A string containing the partition key of the entity to retrieve.
- rowKey
A string containing the row key of the entity to retrieve.
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Platforms
See Also