CloudTable.ExecuteQuerySegmentedAsync Method (TableQuery, TableContinuationToken)

Windows Runtime Azure Storage Client Library

Executes a query in segmented mode with the specified TableContinuationToken continuation token.

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

Usage

Visual Basic
Dim instance As CloudTable
Dim query As TableQuery
Dim token As TableContinuationToken
Dim returnValue As IAsyncOperation(Of TableQuerySegment)

returnValue = instance.ExecuteQuerySegmentedAsync(query, token)

Syntax

Visual Basic
Public Function ExecuteQuerySegmentedAsync ( _
	query As TableQuery, _
	token As TableContinuationToken _
) As IAsyncOperation(Of TableQuerySegment)
C#
public IAsyncOperation<TableQuerySegment> ExecuteQuerySegmentedAsync (
	TableQuery query,
	TableContinuationToken token
)
C++
public:
IAsyncOperation<TableQuerySegment^>^ ExecuteQuerySegmentedAsync (
	TableQuery^ query, 
	TableContinuationToken^ token
)
J#
public IAsyncOperation<TableQuerySegment> ExecuteQuerySegmentedAsync (
	TableQuery query, 
	TableContinuationToken token
)
JScript
public function ExecuteQuerySegmentedAsync (
	query : TableQuery, 
	token : TableContinuationToken
) : IAsyncOperation<TableQuerySegment>

Parameters

query

A TableQuery representing the query to execute.

token

A object representing a continuation token from the server when the operation returns a partial result.

Return Value

A TableQuerySegment object containing the results of executing the query.

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