Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

Initiates an asynchronous operation to download a range of bytes from a blob to a byte array.

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

Syntax

 
[DoesServiceRequestAttribute]
public virtual Task<int> DownloadRangeToByteArrayAsync(
	byte[] target,
	int index,
	Nullable<long> blobOffset,
	Nullable<long> length,
	AccessCondition accessCondition,
	BlobRequestOptions options,
	OperationContext operationContext
)
 
public:
[DoesServiceRequestAttribute]
virtual Task<int>^ DownloadRangeToByteArrayAsync(
	array<unsigned char>^ target,
	int index,
	Nullable<long long> blobOffset,
	Nullable<long long> length,
	AccessCondition^ accessCondition,
	BlobRequestOptions^ options,
	OperationContext^ operationContext
)
 
[<DoesServiceRequestAttribute>]
abstract DownloadRangeToByteArrayAsync : 
        target:byte[] *
        index:int *
        blobOffset:Nullable<int64> *
        length:Nullable<int64> *
        accessCondition:AccessCondition *
        options:BlobRequestOptions *
        operationContext:OperationContext -> Task<int>
[<DoesServiceRequestAttribute>]
override DownloadRangeToByteArrayAsync : 
        target:byte[] *
        index:int *
        blobOffset:Nullable<int64> *
        length:Nullable<int64> *
        accessCondition:AccessCondition *
        options:BlobRequestOptions *
        operationContext:OperationContext -> Task<int>
 
<DoesServiceRequestAttribute>
Public Overridable Function DownloadRangeToByteArrayAsync (
	target As Byte(),
	index As Integer,
	blobOffset As Nullable(OfLong),
	length As Nullable(OfLong),
	accessCondition As AccessCondition,
	options As BlobRequestOptions,
	operationContext As OperationContext
) As Task(OfInteger)
Return to top