Class QueueContinuationToken
- Namespace
- Microsoft.WindowsAzure.Storage.Queue
- Assembly
- Microsoft.WindowsAzure.Storage.dll
Represents a continuation token returned by the Queue service.
public sealed class QueueContinuationToken : IContinuationToken, IXmlSerializable
- Inheritance
-
QueueContinuationToken
- Implements
-
IXmlSerializable
- Inherited Members
Constructors
QueueContinuationToken()
public QueueContinuationToken()
Properties
NextMarker
Gets or sets the next marker for continuing results for CloudQueue 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
XmlReaderThe 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
XmlWriterThe System.Xml.XmlWriter stream to which the continuation token is serialized.