Table of Contents

Class TableQuerySegment<TElement>

Namespace
Microsoft.WindowsAzure.Storage.Table
Assembly
Microsoft.WindowsAzure.Storage.dll

Represents a segment of results and contains continuation token information.

public class TableQuerySegment<TElement> : IEnumerable<TElement>, IEnumerable

Type Parameters

TElement

The type of the result that the segment contains.

Inheritance
TableQuerySegment<TElement>
Implements
IEnumerable<TElement>
Inherited Members

Properties

ContinuationToken

Gets a continuation token to use to retrieve the next set of results with a subsequent call to the operation.

public TableContinuationToken ContinuationToken { get; }

Property Value

TableContinuationToken

A TableContinuationToken object.

Results

Gets an enumerable collection of results.

public List<TElement> Results { get; }

Property Value

List<TElement>

An enumerable collection of results.

Methods

GetEnumerator()

Returns an enumerator that iterates through the TableQuerySegment<TElement>.

public IEnumerator<TElement> GetEnumerator()

Returns

IEnumerator<TElement>

An enumerator that iterates through the TableQuerySegment<TElement>.