TableBatchOperation.Retrieve Method (String, String)

Windows Runtime Azure Storage Client Library

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

Development Platforms

Windows Vista, Windows 7, Windows Server 2008, Windows 8.1, Windows Server 2012 R2, Windows 8 and Windows Server 2012

Target Platforms

See Also