Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

Initiates an asynchronous operation to return a collection of page ranges and their starting and ending bytes.

Namespace:   Microsoft.WindowsAzure.Storage.Blob
Assembly:  Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)

Syntax

 
[DoesServiceRequestAttribute]
public virtual Task<IEnumerable<PageRange>> GetPageRangesAsync(
	Nullable<long> offset,
	Nullable<long> length,
	AccessCondition accessCondition,
	BlobRequestOptions options,
	OperationContext operationContext
)
 
public:
[DoesServiceRequestAttribute]
virtual Task<IEnumerable<PageRange^>^>^ GetPageRangesAsync(
	Nullable<long long> offset,
	Nullable<long long> length,
	AccessCondition^ accessCondition,
	BlobRequestOptions^ options,
	OperationContext^ operationContext
)
 
[<DoesServiceRequestAttribute>]
abstract GetPageRangesAsync : 
        offset:Nullable<int64> *
        length:Nullable<int64> *
        accessCondition:AccessCondition *
        options:BlobRequestOptions *
        operationContext:OperationContext -> Task<IEnumerable<PageRange>>
[<DoesServiceRequestAttribute>]
override GetPageRangesAsync : 
        offset:Nullable<int64> *
        length:Nullable<int64> *
        accessCondition:AccessCondition *
        options:BlobRequestOptions *
        operationContext:OperationContext -> Task<IEnumerable<PageRange>>
 
<DoesServiceRequestAttribute>
Public Overridable Function GetPageRangesAsync (
	offset As Nullable(OfLong),
	length As Nullable(OfLong),
	accessCondition As AccessCondition,
	options As BlobRequestOptions,
	operationContext As OperationContext
) As Task(Of IEnumerable(Of PageRange))
Return to top