Table of Contents

Class ListQueuesResponse

Namespace
Microsoft.WindowsAzure.Storage.Queue.Protocol
Assembly
Microsoft.WindowsAzure.Storage.dll

Provides methods for parsing the response from a queue listing operation.

public sealed class ListQueuesResponse : ResponseParsingBase<QueueEntry>, IDisposable
Inheritance
ListQueuesResponse
Implements
Inherited Members

Constructors

ListQueuesResponse(Stream)

Initializes a new instance of the ListQueuesResponse class.

public ListQueuesResponse(Stream stream)

Parameters

stream Stream

The stream to be parsed.

Properties

ListingContext

Gets the listing context from the XML response.

public ListingContext ListingContext { get; }

Property Value

ListingContext

A set of parameters for the listing operation.

Marker

Gets the Marker value provided for the listing operation from the XML response.

public string Marker { get; }

Property Value

string

The Marker value.

MaxResults

Gets the MaxResults value provided for the listing operation from the XML response.

public int MaxResults { get; }

Property Value

int

The MaxResults value.

NextMarker

Gets the NextMarker value from the XML response, if the listing was not complete.

public string NextMarker { get; }

Property Value

string

The NextMarker value.

Prefix

Gets the Prefix value provided for the listing operation from the XML response.

public string Prefix { get; }

Property Value

string

The Prefix value.

Queues

Gets an enumerable collection of QueueEntry objects from the response.

public IEnumerable<QueueEntry> Queues { get; }

Property Value

IEnumerable<QueueEntry>

An enumerable collection of QueueEntry objects.

Methods

ParseXml()

Parses the response XML for a queue listing operation.

protected override IEnumerable<QueueEntry> ParseXml()

Returns

IEnumerable<QueueEntry>

An enumerable collection of QueueEntry objects.