Table of Contents

Class BlobContinuationToken

Namespace
Microsoft.WindowsAzure.Storage.Blob
Assembly
Microsoft.WindowsAzure.Storage.dll

Represents a continuation token for listing operations.

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

Remarks

BlobContinuationToken continuation tokens are used in methods that return a BlobResultSegment object, such as ListBlobsSegmented(BlobContinuationToken).

Constructors

BlobContinuationToken()

public BlobContinuationToken()

Properties

NextMarker

Gets or sets the next marker for continuing results for ICloudBlob enumeration operations.

public string NextMarker { get; set; }

Property Value

string

A string containing the NextMarker value.

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.