TableResultSegment Class

Definition

Represents a segment of CloudTable results, with continuation information for pagination scenarios.

public sealed class TableResultSegment : System.Collections.Generic.IEnumerable<Microsoft.Azure.Cosmos.Table.CloudTable>
type TableResultSegment = class
    interface seq<CloudTable>
    interface IEnumerable
Public NotInheritable Class TableResultSegment
Implements IEnumerable(Of CloudTable)
Inheritance
TableResultSegment
Implements

Properties

ContinuationToken

Gets the continuation token used to retrieve the next segment of CloudTable results. Returns null if there are no more results.

Results

Gets an enumerable collection of CloudTable results.

Methods

GetEnumerator()

Returns an enumerator that iterates through the segment of CloudTable results.

Explicit Interface Implementations

IEnumerable.GetEnumerator()

Extension Methods

ToCommaSeparatedString<T>(IEnumerable<T>)

Converts the elements of a collection to strings and concatenates them into a comma-separated list, or returns null for null or empty collections.

Applies to