CloudTableClient.ListTablesSegmented Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
ListTablesSegmented(TableContinuationToken) |
Returns a result segment of tables. |
ListTablesSegmented(String, TableContinuationToken) |
Returns a result segment of tables, retrieved lazily, that start with the specified prefix. |
ListTablesSegmented(String, Nullable<Int32>, TableContinuationToken, TableRequestOptions, OperationContext) |
Returns a result segment of tables, retrieved lazily, that start with the specified prefix. |
ListTablesSegmented(TableContinuationToken)
Returns a result segment of tables.
public virtual Microsoft.Azure.Cosmos.Table.TableResultSegment ListTablesSegmented (Microsoft.Azure.Cosmos.Table.TableContinuationToken currentToken);
abstract member ListTablesSegmented : Microsoft.Azure.Cosmos.Table.TableContinuationToken -> Microsoft.Azure.Cosmos.Table.TableResultSegment
override this.ListTablesSegmented : Microsoft.Azure.Cosmos.Table.TableContinuationToken -> Microsoft.Azure.Cosmos.Table.TableResultSegment
Public Overridable Function ListTablesSegmented (currentToken As TableContinuationToken) As TableResultSegment
Parameters
- currentToken
- TableContinuationToken
A TableContinuationToken returned by a previous listing operation.
Returns
A TableResultSegment object.
Applies to
ListTablesSegmented(String, TableContinuationToken)
Returns a result segment of tables, retrieved lazily, that start with the specified prefix.
public virtual Microsoft.Azure.Cosmos.Table.TableResultSegment ListTablesSegmented (string prefix, Microsoft.Azure.Cosmos.Table.TableContinuationToken currentToken);
abstract member ListTablesSegmented : string * Microsoft.Azure.Cosmos.Table.TableContinuationToken -> Microsoft.Azure.Cosmos.Table.TableResultSegment
override this.ListTablesSegmented : string * Microsoft.Azure.Cosmos.Table.TableContinuationToken -> Microsoft.Azure.Cosmos.Table.TableResultSegment
Public Overridable Function ListTablesSegmented (prefix As String, currentToken As TableContinuationToken) As TableResultSegment
Parameters
- prefix
- String
A string containing the table name prefix.
- currentToken
- TableContinuationToken
A TableContinuationToken returned by a previous listing operation.
Returns
A TableResultSegment object.
Applies to
ListTablesSegmented(String, Nullable<Int32>, TableContinuationToken, TableRequestOptions, OperationContext)
Returns a result segment of tables, retrieved lazily, that start with the specified prefix.
public virtual Microsoft.Azure.Cosmos.Table.TableResultSegment ListTablesSegmented (string prefix, int? maxResults, Microsoft.Azure.Cosmos.Table.TableContinuationToken currentToken, Microsoft.Azure.Cosmos.Table.TableRequestOptions requestOptions = default, Microsoft.Azure.Cosmos.Table.OperationContext operationContext = default);
abstract member ListTablesSegmented : string * Nullable<int> * Microsoft.Azure.Cosmos.Table.TableContinuationToken * Microsoft.Azure.Cosmos.Table.TableRequestOptions * Microsoft.Azure.Cosmos.Table.OperationContext -> Microsoft.Azure.Cosmos.Table.TableResultSegment
override this.ListTablesSegmented : string * Nullable<int> * Microsoft.Azure.Cosmos.Table.TableContinuationToken * Microsoft.Azure.Cosmos.Table.TableRequestOptions * Microsoft.Azure.Cosmos.Table.OperationContext -> Microsoft.Azure.Cosmos.Table.TableResultSegment
Public Overridable Function ListTablesSegmented (prefix As String, maxResults As Nullable(Of Integer), currentToken As TableContinuationToken, Optional requestOptions As TableRequestOptions = Nothing, Optional operationContext As OperationContext = Nothing) As TableResultSegment
Parameters
- prefix
- String
A string containing the table name prefix.
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
- TableContinuationToken
A TableContinuationToken returned by a previous listing operation.
- requestOptions
- TableRequestOptions
A TableRequestOptions object that specifies additional options for the request.
- operationContext
- OperationContext
An OperationContext object that represents the context for the current operation.
Returns
A TableResultSegment object.
Applies to
Azure SDK for .NET