Class FileContinuationToken
- Namespace
- Microsoft.WindowsAzure.Storage.File
- Assembly
- Microsoft.WindowsAzure.Storage.dll
Represents a continuation token for listing operations.
public sealed class FileContinuationToken : IContinuationToken, IXmlSerializable
- Inheritance
-
FileContinuationToken
- Implements
-
IXmlSerializable
- Inherited Members
Remarks
FileContinuationToken continuation tokens are used in methods that return a FileResultSegment object, such as ListFilesAndDirectoriesSegmented(FileContinuationToken).
Constructors
FileContinuationToken()
public FileContinuationToken()
Properties
NextMarker
Gets or sets the next marker for continuing results for CloudFile enumeration operations.
public string NextMarker { get; set; }
Property Value
- string
The next marker.
TargetLocation
Gets or sets the storage location that the continuation token applies to.
public StorageLocation? TargetLocation { get; set; }
Property Value
- StorageLocation?
The storage location that the continuation token applies to.
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.