Table of Contents

Class GetPageRangesResponse

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

Provides methods for parsing the response from an operation to get a range of pages for a page blob.

public sealed class GetPageRangesResponse : ResponseParsingBase<PageRange>, IDisposable
Inheritance
GetPageRangesResponse
Implements
Inherited Members

Constructors

GetPageRangesResponse(Stream)

Initializes a new instance of the GetPageRangesResponse class.

public GetPageRangesResponse(Stream stream)

Parameters

stream Stream

The stream of page ranges to be parsed.

Properties

PageRanges

Gets an enumerable collection of PageRange objects from the response.

public IEnumerable<PageRange> PageRanges { get; }

Property Value

IEnumerable<PageRange>

An enumerable collection of PageRange objects.

Methods

ParseXml()

Parses the XML response for an operation to get a range of pages for a page blob.

protected override IEnumerable<PageRange> ParseXml()

Returns

IEnumerable<PageRange>

An enumerable collection of PageRange objects.