AppendBlobClient.CreateIfNotExistsAsync Methode

Definition

Der CreateIfNotExistsAsync(AppendBlobCreateOptions, CancellationToken) Vorgang erstellt ein neues Anfügeblob mit 0 Längen. Wenn das Anfügeblob bereits vorhanden ist, bleibt der Inhalt des vorhandenen Anfügeblobs unverändert. Um dem Anfügeblob Inhalt hinzuzufügen, rufen Sie den Azure.Storage.Blobs.Specialized.AppendBlobClient.AppendBlockAsync(System.IO.Stream,System.Byte[],Azure.Storage.Blobs.Models.AppendBlobRequestConditions,System.IProgress{System.Int64},System.Threading.CancellationToken) Vorgang auf.

Weitere Informationen finden Sie unter Blob platzieren.

public virtual System.Threading.Tasks.Task<Azure.Response<Azure.Storage.Blobs.Models.BlobContentInfo>> CreateIfNotExistsAsync (Azure.Storage.Blobs.Models.AppendBlobCreateOptions options, System.Threading.CancellationToken cancellationToken = default);
abstract member CreateIfNotExistsAsync : Azure.Storage.Blobs.Models.AppendBlobCreateOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Storage.Blobs.Models.BlobContentInfo>>
override this.CreateIfNotExistsAsync : Azure.Storage.Blobs.Models.AppendBlobCreateOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Storage.Blobs.Models.BlobContentInfo>>
Public Overridable Function CreateIfNotExistsAsync (options As AppendBlobCreateOptions, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of BlobContentInfo))

Parameter

options
AppendBlobCreateOptions

Optionale Parameter.

cancellationToken
CancellationToken

Optional CancellationToken zur Weitergabe von Benachrichtigungen, dass der Vorgang abgebrochen werden soll.

Gibt zurück

Wenn das Anfügeblob noch nicht vorhanden ist, wird Response<T> das neu erstellte Anfügeblob beschrieben. Andernfalls null.

Hinweise

Ein RequestFailedException wird ausgelöst, wenn ein Fehler auftritt.

Gilt für: