CloudBlockBlob.PutBlockListAsync Method

Definition

Overloads

PutBlockListAsync(IEnumerable<String>, CancellationToken)

Initiates an asynchronous operation to upload a list of blocks to a new or existing blob.

PutBlockListAsync(IEnumerable<String>)

Initiates an asynchronous operation to upload a list of blocks to a new or existing blob.

PutBlockListAsync(IEnumerable<String>, AccessCondition, BlobRequestOptions, OperationContext)

Initiates an asynchronous operation to upload a list of blocks to a new or existing blob.

PutBlockListAsync(IEnumerable<String>, AccessCondition, BlobRequestOptions, OperationContext, CancellationToken)

Initiates an asynchronous operation to upload a list of blocks to a new or existing blob.

PutBlockListAsync(IEnumerable<String>, CancellationToken)

Initiates an asynchronous operation to upload a list of blocks to a new or existing blob.

[Microsoft.Azure.Storage.DoesServiceRequest]
public virtual System.Threading.Tasks.Task PutBlockListAsync (System.Collections.Generic.IEnumerable<string> blockList, System.Threading.CancellationToken cancellationToken);
[<Microsoft.Azure.Storage.DoesServiceRequest>]
abstract member PutBlockListAsync : seq<string> * System.Threading.CancellationToken -> System.Threading.Tasks.Task
override this.PutBlockListAsync : seq<string> * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Overridable Function PutBlockListAsync (blockList As IEnumerable(Of String), cancellationToken As CancellationToken) As Task

Parameters

blockList
IEnumerable<String>

An enumerable collection of block IDs, as Base64-encoded strings.

cancellationToken
CancellationToken

A CancellationToken to observe while waiting for a task to complete.

Returns

A Task object that represents the asynchronous operation.

Attributes

Applies to

PutBlockListAsync(IEnumerable<String>)

Initiates an asynchronous operation to upload a list of blocks to a new or existing blob.

[Microsoft.Azure.Storage.DoesServiceRequest]
public virtual System.Threading.Tasks.Task PutBlockListAsync (System.Collections.Generic.IEnumerable<string> blockList);
[<Microsoft.Azure.Storage.DoesServiceRequest>]
abstract member PutBlockListAsync : seq<string> -> System.Threading.Tasks.Task
override this.PutBlockListAsync : seq<string> -> System.Threading.Tasks.Task
Public Overridable Function PutBlockListAsync (blockList As IEnumerable(Of String)) As Task

Parameters

blockList
IEnumerable<String>

An enumerable collection of block IDs, as Base64-encoded strings.

Returns

A Task object that represents the asynchronous operation.

Attributes

Applies to

PutBlockListAsync(IEnumerable<String>, AccessCondition, BlobRequestOptions, OperationContext)

Initiates an asynchronous operation to upload a list of blocks to a new or existing blob.

[Microsoft.Azure.Storage.DoesServiceRequest]
public virtual System.Threading.Tasks.Task PutBlockListAsync (System.Collections.Generic.IEnumerable<string> blockList, Microsoft.Azure.Storage.AccessCondition accessCondition, Microsoft.Azure.Storage.Blob.BlobRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext);
[<Microsoft.Azure.Storage.DoesServiceRequest>]
abstract member PutBlockListAsync : seq<string> * Microsoft.Azure.Storage.AccessCondition * Microsoft.Azure.Storage.Blob.BlobRequestOptions * Microsoft.Azure.Storage.OperationContext -> System.Threading.Tasks.Task
override this.PutBlockListAsync : seq<string> * Microsoft.Azure.Storage.AccessCondition * Microsoft.Azure.Storage.Blob.BlobRequestOptions * Microsoft.Azure.Storage.OperationContext -> System.Threading.Tasks.Task
Public Overridable Function PutBlockListAsync (blockList As IEnumerable(Of String), accessCondition As AccessCondition, options As BlobRequestOptions, operationContext As OperationContext) As Task

Parameters

blockList
IEnumerable<String>

An enumerable collection of block IDs, as Base64-encoded strings.

accessCondition
AccessCondition

An AccessCondition object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.

options
BlobRequestOptions

A BlobRequestOptions object that specifies additional options for the request.

operationContext
OperationContext

An OperationContext object that represents the context for the current operation.

Returns

A Task object that represents the asynchronous operation.

Attributes

Applies to

PutBlockListAsync(IEnumerable<String>, AccessCondition, BlobRequestOptions, OperationContext, CancellationToken)

Initiates an asynchronous operation to upload a list of blocks to a new or existing blob.

[Microsoft.Azure.Storage.DoesServiceRequest]
public virtual System.Threading.Tasks.Task PutBlockListAsync (System.Collections.Generic.IEnumerable<string> blockList, Microsoft.Azure.Storage.AccessCondition accessCondition, Microsoft.Azure.Storage.Blob.BlobRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext, System.Threading.CancellationToken cancellationToken);
[<Microsoft.Azure.Storage.DoesServiceRequest>]
abstract member PutBlockListAsync : seq<string> * Microsoft.Azure.Storage.AccessCondition * Microsoft.Azure.Storage.Blob.BlobRequestOptions * Microsoft.Azure.Storage.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task
override this.PutBlockListAsync : seq<string> * Microsoft.Azure.Storage.AccessCondition * Microsoft.Azure.Storage.Blob.BlobRequestOptions * Microsoft.Azure.Storage.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Overridable Function PutBlockListAsync (blockList As IEnumerable(Of String), accessCondition As AccessCondition, options As BlobRequestOptions, operationContext As OperationContext, cancellationToken As CancellationToken) As Task

Parameters

blockList
IEnumerable<String>

An enumerable collection of block IDs, as Base64-encoded strings.

accessCondition
AccessCondition

An AccessCondition object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.

options
BlobRequestOptions

A BlobRequestOptions object that specifies additional options for the request.

operationContext
OperationContext

An OperationContext object that represents the context for the current operation.

cancellationToken
CancellationToken

A CancellationToken to observe while waiting for a task to complete.

Returns

A Task object that represents the asynchronous operation.

Attributes

Applies to