Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

Represents a continuation token for listing operations.

Namespace:   Microsoft.WindowsAzure.Storage.Table
Assembly:  Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)

Inheritance Hierarchy

System.::..Object
  Microsoft.WindowsAzure.Storage.Table.::..TableContinuationToken

Syntax

 
public sealed class TableContinuationToken : IContinuationToken, 
	IXmlSerializable
 
public ref class TableContinuationToken sealed : IContinuationToken, 
	IXmlSerializable
 
[<Sealed>]
type TableContinuationToken = 
    class
        interface IContinuationToken
        interface IXmlSerializable
    end
 
Public NotInheritable Class TableContinuationToken
	Implements IContinuationToken, IXmlSerializable

Constructors

Properties

NameDescription
System_CAPS_pubpropertyNextPartitionKeyNextPartitionKeyNextPartitionKeyNextPartitionKey

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

System_CAPS_pubpropertyNextRowKeyNextRowKeyNextRowKeyNextRowKey

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

System_CAPS_pubpropertyNextTableNameNextTableNameNextTableNameNextTableName

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

System_CAPS_pubpropertyTargetLocationTargetLocationTargetLocationTargetLocation

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

Methods

NameDescription
System_CAPS_pubmethodEquals(Object)(Object^)(Object)(Object)

(Inherited from Object.)

System_CAPS_pubmethodGetHashCode()()()()

(Inherited from Object.)

System_CAPS_pubmethodGetSchema()()()()

Gets an XML representation of an object.

System_CAPS_pubmethodGetType()()()()

(Inherited from Object.)

System_CAPS_pubmethodReadXml(XmlReader)(XmlReader^)(XmlReader)(XmlReader)

Generates a serializable continuation token from its XML representation.

System_CAPS_pubmethodToString()()()()

(Inherited from Object.)

System_CAPS_pubmethodWriteXml(XmlWriter)(XmlWriter^)(XmlWriter)(XmlWriter)

Converts a serializable continuation token into its XML representation.

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.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Return to top