Initiates an asynchronous operation to return a result segment of tables that start with the specified prefix.
Assembly: Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)
Syntax
[DoesServiceRequestAttribute] public virtual Task<TableResultSegment> ListTablesSegmentedAsync( string prefix, Nullable<int> maxResults, TableContinuationToken currentToken, TableRequestOptions requestOptions, OperationContext operationContext )
public: [DoesServiceRequestAttribute] virtual Task<TableResultSegment^>^ ListTablesSegmentedAsync( String^ prefix, Nullable<int> maxResults, TableContinuationToken^ currentToken, TableRequestOptions^ requestOptions, OperationContext^ operationContext )
[<DoesServiceRequestAttribute>] abstract ListTablesSegmentedAsync : prefix:string * maxResults:Nullable<int> * currentToken:TableContinuationToken * requestOptions:TableRequestOptions * operationContext:OperationContext -> Task<TableResultSegment> [<DoesServiceRequestAttribute>] override ListTablesSegmentedAsync : prefix:string * maxResults:Nullable<int> * currentToken:TableContinuationToken * requestOptions:TableRequestOptions * operationContext:OperationContext -> Task<TableResultSegment>
<DoesServiceRequestAttribute> Public Overridable Function ListTablesSegmentedAsync ( prefix As String, maxResults As Nullable(Of Integer), currentToken As TableContinuationToken, requestOptions As TableRequestOptions, operationContext As OperationContext ) As Task(Of TableResultSegment)
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.
Return Value
Type: System.Threading.Tasks.Task<TableResultSegment>System.Threading.Tasks::Task<TableResultSegment^>^System.Threading.Tasks.Task<TableResultSegment>System.Threading.Tasks.Task(Of TableResultSegment)A Task<TResult><TResult><'TResult>(Of TResult) object of type TableResultSegment that represents the asynchronous operation.
See Also
ListTablesSegmentedAsync Overload
CloudTableClient Class
Microsoft.WindowsAzure.Storage.Table Namespace