Returns a result segment containing a collection of tables beginning with the specified prefix.
Namespace: Microsoft.WindowsAzure.Storage.Table
Assembly: Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)
Usage
Visual Basic |
---|
Dim instance As CloudTableClient
Dim prefix As String
Dim maxResults As Nullable(Of Integer)
Dim currentToken As TableContinuationToken
Dim requestOptions As TableRequestOptions
Dim operationContext As OperationContext
Dim returnValue As IAsyncOperation(Of TableResultSegment)
returnValue = instance.ListTablesSegmentedAsync(prefix, maxResults, currentToken, requestOptions, operationContext) |
Syntax
Visual Basic |
---|
Public Function ListTablesSegmentedAsync ( _
prefix As String, _
maxResults As Nullable(Of Integer), _
currentToken As TableContinuationToken, _
requestOptions As TableRequestOptions, _
operationContext As OperationContext _
) As IAsyncOperation(Of TableResultSegment) |
C# |
---|
public IAsyncOperation<TableResultSegment> ListTablesSegmentedAsync (
string prefix,
Nullable<int> maxResults,
TableContinuationToken currentToken,
TableRequestOptions requestOptions,
OperationContext operationContext
) |
C++ |
---|
public:
IAsyncOperation<TableResultSegment^>^ ListTablesSegmentedAsync (
String^ prefix,
Nullable<int> maxResults,
TableContinuationToken^ currentToken,
TableRequestOptions^ requestOptions,
OperationContext^ operationContext
) |
J# |
---|
public IAsyncOperation<TableResultSegment> ListTablesSegmentedAsync (
String prefix,
Nullable<int> maxResults,
TableContinuationToken currentToken,
TableRequestOptions requestOptions,
OperationContext operationContext
) |
JScript |
---|
public function ListTablesSegmentedAsync (
prefix : String,
maxResults : Nullable<int>,
currentToken : TableContinuationToken,
requestOptions : TableRequestOptions,
operationContext : OperationContext
) : IAsyncOperation<TableResultSegment> |
Parameters
- prefix
The table name prefix.
- maxResults
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
A TableContinuationToken token returned by a previous listing operation.
- requestOptions
A TableRequestOptions object that specifies additional options for the request.
- operationContext
An OperationContext object that provides information on how the operation executed.
Return Value
The result segment containing the collection of tables.
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