Table of Contents

Class TableContinuationToken

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

Represents a continuation token for listing operations.

public sealed class TableContinuationToken : IContinuationToken, IXmlSerializable
Inheritance
TableContinuationToken
Implements
IXmlSerializable
Inherited Members

Remarks

A method that may return a partial set of results via a TableResultSegment object also returns a continuation token, which can be used in a subsequent call to return the next set of available results.

Constructors

TableContinuationToken()

public TableContinuationToken()

Properties

NextPartitionKey

Gets or sets the next partition key for ITableEntity enumeration operations.

public string NextPartitionKey { get; set; }

Property Value

string

A string containing the next partition key.

NextRowKey

Gets or sets the next row key for ITableEntity enumeration operations.

public string NextRowKey { get; set; }

Property Value

string

A string containing the next row key.

NextTableName

Gets or sets the next table name for ITableEntity enumeration operations.

public string NextTableName { get; set; }

Property Value

string

A string containing the name of the next table.

TargetLocation

Gets or sets the storage location that the continuation token applies to.

public StorageLocation? TargetLocation { get; set; }

Property Value

StorageLocation?

A StorageLocation enumeration value.

Methods

GetSchema()

Gets an XML representation of an object.

public XmlSchema GetSchema()

Returns

XmlSchema

An System.Xml.Schema.XmlSchema that describes the XML representation of the object that is produced by the System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter) method and consumed by the System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader) method.

ReadXml(XmlReader)

Generates a serializable continuation token from its XML representation.

public void ReadXml(XmlReader reader)

Parameters

reader XmlReader

The System.Xml.XmlReader stream from which the continuation token is deserialized.

WriteXml(XmlWriter)

Converts a serializable continuation token into its XML representation.

public void WriteXml(XmlWriter writer)

Parameters

writer XmlWriter

The System.Xml.XmlWriter stream to which the continuation token is serialized.