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 an append blob. If the blob already exists, it will be overwritten. Recommended only for single-writer scenarios.

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

Syntax

 
[DoesServiceRequestAttribute]
public virtual Task UploadFromByteArrayAsync(
	byte[] buffer,
	int index,
	int count
)
 
public:
[DoesServiceRequestAttribute]
virtual Task^ UploadFromByteArrayAsync(
	array<unsigned char>^ buffer,
	int index,
	int count
)
 
[<DoesServiceRequestAttribute>]
abstract UploadFromByteArrayAsync : 
        buffer:byte[] *
        index:int *
        count:int -> Task
[<DoesServiceRequestAttribute>]
override UploadFromByteArrayAsync : 
        buffer:byte[] *
        index:int *
        count:int -> Task
 
<DoesServiceRequestAttribute>
Public Overridable Function UploadFromByteArrayAsync (
	buffer As Byte(),
	index As Integer,
	count As Integer
) As Task

Parameters

buffer
Type: System.Byte[]array<System::Byte>^System.Byte[]System.Byte()

An array of bytes.

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

The zero-based byte offset in buffer at which to begin uploading bytes to the blob.

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

The number of bytes to be written to the blob.

Remarks

Use this method only in single-writer scenarios. Internally, this method uses the append-offset conditional header to avoid duplicate blocks, which may cause problems in multiple-writer scenarios. To append data to an append blob that already exists, see AppendFromByteArrayAsync.

Return to top