BlobContainerClient.UploadBlob Method

Definition

Overloads

UploadBlob(String, BinaryData, CancellationToken)

The UploadBlob(String, BinaryData, CancellationToken) operation creates a new block blob.

For partial block blob updates and other advanced features, please see BlockBlobClient. To create or modify page or append blobs, please see PageBlobClient or AppendBlobClient.

For more information, see Put Blob.

UploadBlob(String, Stream, CancellationToken)

The UploadBlob(String, Stream, CancellationToken) operation creates a new block blob.

For partial block blob updates and other advanced features, please see BlockBlobClient. To create or modify page or append blobs, please see PageBlobClient or AppendBlobClient.

For more information, see Put Blob.

UploadBlob(String, BinaryData, CancellationToken)

Source:
BlobContainerClient.cs
Source:
BlobContainerClient.cs

The UploadBlob(String, BinaryData, CancellationToken) operation creates a new block blob.

For partial block blob updates and other advanced features, please see BlockBlobClient. To create or modify page or append blobs, please see PageBlobClient or AppendBlobClient.

For more information, see Put Blob.

public virtual Azure.Response<Azure.Storage.Blobs.Models.BlobContentInfo> UploadBlob (string blobName, BinaryData content, System.Threading.CancellationToken cancellationToken = default);
abstract member UploadBlob : string * BinaryData * System.Threading.CancellationToken -> Azure.Response<Azure.Storage.Blobs.Models.BlobContentInfo>
override this.UploadBlob : string * BinaryData * System.Threading.CancellationToken -> Azure.Response<Azure.Storage.Blobs.Models.BlobContentInfo>
Public Overridable Function UploadBlob (blobName As String, content As BinaryData, Optional cancellationToken As CancellationToken = Nothing) As Response(Of BlobContentInfo)

Parameters

blobName
String

The name of the blob to upload.

content
BinaryData

A BinaryData containing the content to upload.

cancellationToken
CancellationToken

Optional CancellationToken to propagate notifications that the operation should be cancelled.

Returns

A Response<T> describing the state of the updated block blob.

Remarks

A RequestFailedException will be thrown if the blob already exists. To overwrite an existing block blob, get a BlobClient by calling GetBlobClient(String), and then call UploadAsync(Stream, Boolean, CancellationToken) with the override parameter set to true.

Applies to

UploadBlob(String, Stream, CancellationToken)

Source:
BlobContainerClient.cs
Source:
BlobContainerClient.cs

The UploadBlob(String, Stream, CancellationToken) operation creates a new block blob.

For partial block blob updates and other advanced features, please see BlockBlobClient. To create or modify page or append blobs, please see PageBlobClient or AppendBlobClient.

For more information, see Put Blob.

public virtual Azure.Response<Azure.Storage.Blobs.Models.BlobContentInfo> UploadBlob (string blobName, System.IO.Stream content, System.Threading.CancellationToken cancellationToken = default);
abstract member UploadBlob : string * System.IO.Stream * System.Threading.CancellationToken -> Azure.Response<Azure.Storage.Blobs.Models.BlobContentInfo>
override this.UploadBlob : string * System.IO.Stream * System.Threading.CancellationToken -> Azure.Response<Azure.Storage.Blobs.Models.BlobContentInfo>
Public Overridable Function UploadBlob (blobName As String, content As Stream, Optional cancellationToken As CancellationToken = Nothing) As Response(Of BlobContentInfo)

Parameters

blobName
String

The name of the blob to upload.

content
Stream

A Stream containing the content to upload.

cancellationToken
CancellationToken

Optional CancellationToken to propagate notifications that the operation should be cancelled.

Returns

A Response<T> describing the state of the updated block blob.

Remarks

A RequestFailedException will be thrown if the blob already exists. To overwrite an existing block blob, get a BlobClient by calling GetBlobClient(String), and then call UploadAsync(Stream, Boolean, CancellationToken) with the override parameter set to true.

Applies to