Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

CloudTableClient.BeginListTablesSegmented Method (String, Nullable(Int32), TableContinuationToken, TableRequestOptions, OperationContext, AsyncCallback, Object) (Microsoft.WindowsAzure.Storage.Table)

Begins an asynchronous operation to return a result segment of tables that start with the specified prefix.

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

Syntax

 
[DoesServiceRequestAttribute]
public virtual ICancellableAsyncResult BeginListTablesSegmented(
	string prefix,
	Nullable<int> maxResults,
	TableContinuationToken currentToken,
	TableRequestOptions requestOptions,
	OperationContext operationContext,
	AsyncCallback callback,
	object state
)
 
public:
[DoesServiceRequestAttribute]
virtual ICancellableAsyncResult^ BeginListTablesSegmented(
	String^ prefix,
	Nullable<int> maxResults,
	TableContinuationToken^ currentToken,
	TableRequestOptions^ requestOptions,
	OperationContext^ operationContext,
	AsyncCallback^ callback,
	Object^ state
)
 
[<DoesServiceRequestAttribute>]
abstract BeginListTablesSegmented : 
        prefix:string *
        maxResults:Nullable<int> *
        currentToken:TableContinuationToken *
        requestOptions:TableRequestOptions *
        operationContext:OperationContext *
        callback:AsyncCallback *
        state:Object -> ICancellableAsyncResult
[<DoesServiceRequestAttribute>]
override BeginListTablesSegmented : 
        prefix:string *
        maxResults:Nullable<int> *
        currentToken:TableContinuationToken *
        requestOptions:TableRequestOptions *
        operationContext:OperationContext *
        callback:AsyncCallback *
        state:Object -> ICancellableAsyncResult
 
<DoesServiceRequestAttribute>
Public Overridable Function BeginListTablesSegmented (
	prefix As String,
	maxResults As Nullable(OfInteger),
	currentToken As TableContinuationToken,
	requestOptions As TableRequestOptions,
	operationContext As OperationContext,
	callback As AsyncCallback,
	state As Object
) As ICancellableAsyncResult

Parameters

prefix
Type: System.StringSystem::String^System.StringSystem.String

A string containing the table name prefix.

maxResults
Type: System.Nullable<Int32>System::Nullable<Int32>System.Nullable<Int32>System.Nullable(Of Int32)

A non-negative integer value that indicates the maximum number of results to be returned at a time, up to the per-operation limit of 5000. If this value is null, the maximum possible number of results will be returned, up to 5000.

currentToken
Type: Microsoft.WindowsAzure.Storage.Table.TableContinuationTokenMicrosoft.WindowsAzure.Storage.Table::TableContinuationToken^Microsoft.WindowsAzure.Storage.Table.TableContinuationTokenMicrosoft.WindowsAzure.Storage.Table.TableContinuationToken

A TableContinuationToken returned by a previous listing operation.

requestOptions
Type: Microsoft.WindowsAzure.Storage.Table.TableRequestOptionsMicrosoft.WindowsAzure.Storage.Table::TableRequestOptions^Microsoft.WindowsAzure.Storage.Table.TableRequestOptionsMicrosoft.WindowsAzure.Storage.Table.TableRequestOptions

The server timeout, maximum execution time, and retry policies for the operation.

operationContext
Type: Microsoft.WindowsAzure.Storage.OperationContextMicrosoft.WindowsAzure.Storage::OperationContext^Microsoft.WindowsAzure.Storage.OperationContextMicrosoft.WindowsAzure.Storage.OperationContext

An OperationContext object that represents the context for the current operation.

callback
Type: System.AsyncCallbackSystem::AsyncCallback^System.AsyncCallbackSystem.AsyncCallback

An AsyncCallback delegate that will receive notification when the asynchronous operation completes.

state
Type: System.ObjectSystem::Object^System.ObjectSystem.Object

A user-defined object that will be passed to the callback delegate.

Return to top