Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

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

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

Syntax

 
Task UploadFromByteArrayAsync(
	byte[] buffer,
	int index,
	int count,
	AccessCondition accessCondition,
	BlobRequestOptions options,
	OperationContext operationContext
)
 
Task^ UploadFromByteArrayAsync(
	array<unsigned char>^ buffer,
	int index,
	int count,
	AccessCondition^ accessCondition,
	BlobRequestOptions^ options,
	OperationContext^ operationContext
)
 
abstract UploadFromByteArrayAsync : 
        buffer:byte[] *
        index:int *
        count:int *
        accessCondition:AccessCondition *
        options:BlobRequestOptions *
        operationContext:OperationContext -> Task
 
Function UploadFromByteArrayAsync (
	buffer As Byte(),
	index As Integer,
	count As Integer,
	accessCondition As AccessCondition,
	options As BlobRequestOptions,
	operationContext As OperationContext
) As Task
Return to top