Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

Ends 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

 
int EndDownloadToByteArray(
	IAsyncResult asyncResult
)
 
int EndDownloadToByteArray(
	IAsyncResult^ asyncResult
)
 
abstract EndDownloadToByteArray : 
        asyncResult:IAsyncResult -> int
 
Function EndDownloadToByteArray (
	asyncResult As IAsyncResult
) As Integer

Parameters

asyncResult
Type: System.IAsyncResultSystem::IAsyncResult^System.IAsyncResultSystem.IAsyncResult

An IAsyncResult that references the pending asynchronous operation.

Return Value

Type: System.Int32System::Int32System.Int32System.Int32

The total number of bytes read into the buffer.

Return to top