Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

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

Overload List

NameDescription
System_CAPS_pubmethodAppendFromByteArrayAsync(Byte[], Int32, Int32)(array<Byte>^, Int32, Int32)(Byte[], Int32, Int32)(Byte(), Int32, Int32)

Initiates an asynchronous operation to append the contents of a byte array to an append blob. Recommended only for single-writer scenarios.

System_CAPS_pubmethodAppendFromByteArrayAsync(Byte[], Int32, Int32, AccessCondition, BlobRequestOptions, OperationContext)(array<Byte>^, Int32, Int32, AccessCondition^, BlobRequestOptions^, OperationContext^)(Byte[], Int32, Int32, AccessCondition, BlobRequestOptions, OperationContext)(Byte(), Int32, Int32, AccessCondition, BlobRequestOptions, OperationContext)

Initiates an asynchronous operation to append the contents of a byte array to an append blob.This API should be used strictly in a single writer scenario because the API internally uses the append-offset conditional header to avoid duplicate blocks which does not work in a multiple writer scenario.

System_CAPS_pubmethodAppendFromByteArrayAsync(Byte[], Int32, Int32, AccessCondition, BlobRequestOptions, OperationContext, CancellationToken)(array<Byte>^, Int32, Int32, AccessCondition^, BlobRequestOptions^, OperationContext^, CancellationToken)(Byte[], Int32, Int32, AccessCondition, BlobRequestOptions, OperationContext, CancellationToken)(Byte(), Int32, Int32, AccessCondition, BlobRequestOptions, OperationContext, CancellationToken)

Initiates an asynchronous operation to upload the contents of a byte array to an append blob.This API should be used strictly in a single writer scenario because the API internally uses the append-offset conditional header to avoid duplicate blocks which does not work in a multiple writer scenario.

System_CAPS_pubmethodAppendFromByteArrayAsync(Byte[], Int32, Int32, CancellationToken)(array<Byte>^, Int32, Int32, CancellationToken)(Byte[], Int32, Int32, CancellationToken)(Byte(), Int32, Int32, CancellationToken)

Initiates an asynchronous operation to append the contents of a byte array to an append blob. Recommended only for single-writer scenarios.

Return to top