Gets a collection of valid page ranges and their starting and ending bytes.
Namespace: Microsoft.WindowsAzure.Storage.Blob
Assembly: Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)
Usage
Visual Basic |
---|
Dim instance As CloudPageBlob
Dim offset As Nullable(Of Long)
Dim length As Nullable(Of Long)
Dim accessCondition As AccessCondition
Dim options As BlobRequestOptions
Dim operationContext As OperationContext
Dim returnValue As IAsyncOperation(Of IEnumerable(Of PageRange))
returnValue = instance.GetPageRangesAsync(offset, length, accessCondition, options, operationContext) |
Syntax
Visual Basic |
---|
Public Function GetPageRangesAsync ( _
offset As Nullable(Of Long), _
length As Nullable(Of Long), _
accessCondition As AccessCondition, _
options As BlobRequestOptions, _
operationContext As OperationContext _
) As IAsyncOperation(Of IEnumerable(Of PageRange)) |
C# |
---|
public IAsyncOperation<IEnumerable<PageRange>> GetPageRangesAsync (
Nullable<long> offset,
Nullable<long> length,
AccessCondition accessCondition,
BlobRequestOptions options,
OperationContext operationContext
) |
C++ |
---|
public:
IAsyncOperation<IEnumerable<PageRange^>^>^ GetPageRangesAsync (
Nullable<long long> offset,
Nullable<long long> length,
AccessCondition^ accessCondition,
BlobRequestOptions^ options,
OperationContext^ operationContext
) |
J# |
---|
public IAsyncOperation<IEnumerable<PageRange>> GetPageRangesAsync (
Nullable<long> offset,
Nullable<long> length,
AccessCondition accessCondition,
BlobRequestOptions options,
OperationContext operationContext
) |
JScript |
---|
public function GetPageRangesAsync (
offset : Nullable<long>,
length : Nullable<long>,
accessCondition : AccessCondition,
options : BlobRequestOptions,
operationContext : OperationContext
) : IAsyncOperation<IEnumerable<PageRange>> |
Parameters
- offset
The starting offset of the data range over which to list page ranges, in bytes. Must be a multiple of 512.
- length
The length of the data range over which to list page ranges, in bytes. Must be a multiple of 512.
- accessCondition
An AccessCondition object that represents the access conditions for the blob. If null
, no condition is used.
- options
A BlobRequestOptions object that specifies additional options for the request.
- operationContext
An OperationContext object that represents the context for the current operation.
Return Value
An enumerable collection of page ranges.
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Platforms
See Also