Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

Returns a task that performs an asynchronous operation to return a collection of valid ranges and their starting and ending bytes.

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

Syntax

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