Table of Contents

Class TableResultSegment

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

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

public sealed class TableResultSegment : IEnumerable<CloudTable>, IEnumerable
Inheritance
TableResultSegment
Implements
Inherited Members

Properties

ContinuationToken

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

public TableContinuationToken ContinuationToken { get; }

Property Value

TableContinuationToken

A TableContinuationToken object.

Results

Gets an enumerable collection of CloudTable results.

public IList<CloudTable> Results { get; }

Property Value

IList<CloudTable>

An enumerable collection of CloudTable objects.

Methods

GetEnumerator()

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

public IEnumerator<CloudTable> GetEnumerator()

Returns

IEnumerator<CloudTable>

An enumerator that iterates through the segment of CloudTable results.