ICloudAppendBlob.AppendAsync Method

Definition

Initiates an asynchronous operation to open a stream for writing to the blob.

public:
 System::Threading::Tasks::Task ^ AppendAsync(ArraySegment<System::Byte> data, System::Threading::CancellationToken cancellationToken);
public System.Threading.Tasks.Task AppendAsync (ArraySegment<byte> data, System.Threading.CancellationToken cancellationToken);
abstract member AppendAsync : ArraySegment<byte> * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Function AppendAsync (data As ArraySegment(Of Byte), cancellationToken As CancellationToken) As Task

Parameters

cancellationToken
CancellationToken

Returns

A Task<TResult> object of type Stream that represents the asynchronous operation.

Exceptions

The cancellation token was canceled. This exception is stored into the returned task.

Remarks

This API supports the .NET infrastructure and is not intended to be used directly from your code.

Applies to