Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

CloudTableClient.BeginListTablesSegmented Method (String, TableContinuationToken, 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,
	TableContinuationToken currentToken,
	AsyncCallback callback,
	object state
)
 
public:
[DoesServiceRequestAttribute]
virtual ICancellableAsyncResult^ BeginListTablesSegmented(
	String^ prefix,
	TableContinuationToken^ currentToken,
	AsyncCallback^ callback,
	Object^ state
)
 
[<DoesServiceRequestAttribute>]
abstract BeginListTablesSegmented : 
        prefix:string *
        currentToken:TableContinuationToken *
        callback:AsyncCallback *
        state:Object -> ICancellableAsyncResult
[<DoesServiceRequestAttribute>]
override BeginListTablesSegmented : 
        prefix:string *
        currentToken:TableContinuationToken *
        callback:AsyncCallback *
        state:Object -> ICancellableAsyncResult
 
<DoesServiceRequestAttribute>
Public Overridable Function BeginListTablesSegmented (
	prefix As String,
	currentToken As TableContinuationToken,
	callback As AsyncCallback,
	state As Object
) As ICancellableAsyncResult

Parameters

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

A string containing the table name prefix.

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.

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