Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

Initiates an asynchronous operation to download the contents of a blob to a byte array.

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

Syntax

 
Task<int> DownloadToByteArrayAsync(
	byte[] target,
	int index,
	AccessCondition accessCondition,
	BlobRequestOptions options,
	OperationContext operationContext,
	CancellationToken cancellationToken
)
 
Task<int>^ DownloadToByteArrayAsync(
	array<unsigned char>^ target,
	int index,
	AccessCondition^ accessCondition,
	BlobRequestOptions^ options,
	OperationContext^ operationContext,
	CancellationToken cancellationToken
)
 
abstract DownloadToByteArrayAsync : 
        target:byte[] *
        index:int *
        accessCondition:AccessCondition *
        options:BlobRequestOptions *
        operationContext:OperationContext *
        cancellationToken:CancellationToken -> Task<int>
 
Function DownloadToByteArrayAsync (
	target As Byte(),
	index As Integer,
	accessCondition As AccessCondition,
	options As BlobRequestOptions,
	operationContext As OperationContext,
	cancellationToken As CancellationToken
) As Task(OfInteger)

Return Value

Type: System.Threading.Tasks.Task<Int32>System.Threading.Tasks::Task<Int32>^System.Threading.Tasks.Task<Int32>System.Threading.Tasks.Task(Of Int32)

A Task object of type int that represents the asynchronous operation.

Return to top