Freigeben über


CloudPageBlob.CreateAsync Methode

Definition

Überlädt

CreateAsync(Int64, AccessCondition, BlobRequestOptions, OperationContext, CancellationToken)

Initiiert einen asynchronen Vorgang zum Erstellen eines Seitenblobs. Wenn das Blob bereits vorhanden ist, wird es von diesem Vorgang überschrieben. Um eine Ausnahme auszulösen, wenn das Blob vorhanden ist, übergeben Sie ein objekt, das mit GenerateIfNotExistsCondition()generiert wurde, anstatt zu AccessCondition überschreiben.

CreateAsync(Int64)

Initiiert einen asynchronen Vorgang zum Erstellen eines Seitenblobs. Wenn das Blob bereits vorhanden ist, wird es von diesem Vorgang überschrieben. Um eine Ausnahme auszulösen, wenn das Blob vorhanden ist, verwenden Sie CreateAsync(Int64, AccessCondition, BlobRequestOptions, OperationContext)anstelle des Überschreibens .

CreateAsync(Int64, CancellationToken)

Initiiert einen asynchronen Vorgang zum Erstellen eines Seitenblobs. Wenn das Blob bereits vorhanden ist, wird es von diesem Vorgang überschrieben. Um eine Ausnahme auszulösen, wenn das Blob vorhanden ist, verwenden Sie CreateAsync(Int64, AccessCondition, BlobRequestOptions, OperationContext, CancellationToken)anstelle des Überschreibens .

CreateAsync(Int64, AccessCondition, BlobRequestOptions, OperationContext)

Initiiert einen asynchronen Vorgang zum Erstellen eines Seitenblobs. Wenn das Blob bereits vorhanden ist, wird es von diesem Vorgang überschrieben. Um eine Ausnahme auszulösen, wenn das Blob vorhanden ist, übergeben Sie ein objekt, das mit GenerateIfNotExistsCondition()generiert wurde, anstatt zu AccessCondition überschreiben.

CreateAsync(Int64, Nullable<PremiumPageBlobTier>, AccessCondition, BlobRequestOptions, OperationContext, CancellationToken)

Initiiert einen asynchronen Vorgang zum Erstellen eines Seitenblobs. Wenn das Blob bereits vorhanden ist, wird es von diesem Vorgang überschrieben. Um eine Ausnahme auszulösen, wenn das Blob vorhanden ist, übergeben Sie ein objekt, das mit GenerateIfNotExistsCondition()generiert wurde, anstatt zu AccessCondition überschreiben.

CreateAsync(Int64, AccessCondition, BlobRequestOptions, OperationContext, CancellationToken)

Initiiert einen asynchronen Vorgang zum Erstellen eines Seitenblobs. Wenn das Blob bereits vorhanden ist, wird es von diesem Vorgang überschrieben. Um eine Ausnahme auszulösen, wenn das Blob vorhanden ist, übergeben Sie ein objekt, das mit GenerateIfNotExistsCondition()generiert wurde, anstatt zu AccessCondition überschreiben.

[Microsoft.Azure.Storage.DoesServiceRequest]
public virtual System.Threading.Tasks.Task CreateAsync (long size, 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 CreateAsync : int64 * Microsoft.Azure.Storage.AccessCondition * Microsoft.Azure.Storage.Blob.BlobRequestOptions * Microsoft.Azure.Storage.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task
override this.CreateAsync : int64 * Microsoft.Azure.Storage.AccessCondition * Microsoft.Azure.Storage.Blob.BlobRequestOptions * Microsoft.Azure.Storage.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Overridable Function CreateAsync (size As Long, accessCondition As AccessCondition, options As BlobRequestOptions, operationContext As OperationContext, cancellationToken As CancellationToken) As Task

Parameter

size
Int64

Die maximale Größe des Blobs in Bytes.

accessCondition
AccessCondition

Ein AccessCondition-Objekt, das die Bedingung darstellt, die erfüllt werden muss, damit die Anforderung fortgesetzt werden kann. Wenn null, wird keine Bedingung verwendet.

options
BlobRequestOptions

Ein BlobRequestOptions-Objekt, das zusätzliche Optionen für die Anforderung angibt.

operationContext
OperationContext

Ein OperationContext-Objekt, das den Kontext für den aktuellen Vorgang darstellt.

cancellationToken
CancellationToken

Ein CancellationToken, das beim Warten auf den Abschluss einer Aufgabe überwacht werden soll.

Gibt zurück

Ein Task-Objekt, das den asynchronen Vorgang darstellt.

Attribute

Gilt für:

CreateAsync(Int64)

Initiiert einen asynchronen Vorgang zum Erstellen eines Seitenblobs. Wenn das Blob bereits vorhanden ist, wird es von diesem Vorgang überschrieben. Um eine Ausnahme auszulösen, wenn das Blob vorhanden ist, verwenden Sie CreateAsync(Int64, AccessCondition, BlobRequestOptions, OperationContext)anstelle des Überschreibens .

[Microsoft.Azure.Storage.DoesServiceRequest]
public virtual System.Threading.Tasks.Task CreateAsync (long size);
[<Microsoft.Azure.Storage.DoesServiceRequest>]
abstract member CreateAsync : int64 -> System.Threading.Tasks.Task
override this.CreateAsync : int64 -> System.Threading.Tasks.Task
Public Overridable Function CreateAsync (size As Long) As Task

Parameter

size
Int64

Die maximale Größe des Blobs in Bytes.

Gibt zurück

Ein Task-Objekt, das den asynchronen Vorgang darstellt.

Attribute

Gilt für:

CreateAsync(Int64, CancellationToken)

Initiiert einen asynchronen Vorgang zum Erstellen eines Seitenblobs. Wenn das Blob bereits vorhanden ist, wird es von diesem Vorgang überschrieben. Um eine Ausnahme auszulösen, wenn das Blob vorhanden ist, verwenden Sie CreateAsync(Int64, AccessCondition, BlobRequestOptions, OperationContext, CancellationToken)anstelle des Überschreibens .

[Microsoft.Azure.Storage.DoesServiceRequest]
public virtual System.Threading.Tasks.Task CreateAsync (long size, System.Threading.CancellationToken cancellationToken);
[<Microsoft.Azure.Storage.DoesServiceRequest>]
abstract member CreateAsync : int64 * System.Threading.CancellationToken -> System.Threading.Tasks.Task
override this.CreateAsync : int64 * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Overridable Function CreateAsync (size As Long, cancellationToken As CancellationToken) As Task

Parameter

size
Int64

Die maximale Größe des Blobs in Bytes.

cancellationToken
CancellationToken

Ein CancellationToken, das beim Warten auf den Abschluss einer Aufgabe überwacht werden soll.

Gibt zurück

Ein Task-Objekt, das den asynchronen Vorgang darstellt.

Attribute

Gilt für:

CreateAsync(Int64, AccessCondition, BlobRequestOptions, OperationContext)

Initiiert einen asynchronen Vorgang zum Erstellen eines Seitenblobs. Wenn das Blob bereits vorhanden ist, wird es von diesem Vorgang überschrieben. Um eine Ausnahme auszulösen, wenn das Blob vorhanden ist, übergeben Sie ein objekt, das mit GenerateIfNotExistsCondition()generiert wurde, anstatt zu AccessCondition überschreiben.

[Microsoft.Azure.Storage.DoesServiceRequest]
public virtual System.Threading.Tasks.Task CreateAsync (long size, Microsoft.Azure.Storage.AccessCondition accessCondition, Microsoft.Azure.Storage.Blob.BlobRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext);
[<Microsoft.Azure.Storage.DoesServiceRequest>]
abstract member CreateAsync : int64 * Microsoft.Azure.Storage.AccessCondition * Microsoft.Azure.Storage.Blob.BlobRequestOptions * Microsoft.Azure.Storage.OperationContext -> System.Threading.Tasks.Task
override this.CreateAsync : int64 * Microsoft.Azure.Storage.AccessCondition * Microsoft.Azure.Storage.Blob.BlobRequestOptions * Microsoft.Azure.Storage.OperationContext -> System.Threading.Tasks.Task
Public Overridable Function CreateAsync (size As Long, accessCondition As AccessCondition, options As BlobRequestOptions, operationContext As OperationContext) As Task

Parameter

size
Int64

Die maximale Größe des Blobs in Bytes.

accessCondition
AccessCondition

Ein AccessCondition-Objekt, das die Bedingung darstellt, die erfüllt werden muss, damit die Anforderung fortgesetzt werden kann. Wenn null, wird keine Bedingung verwendet.

options
BlobRequestOptions

Ein BlobRequestOptions-Objekt, das zusätzliche Optionen für die Anforderung angibt.

operationContext
OperationContext

Ein OperationContext-Objekt, das den Kontext für den aktuellen Vorgang darstellt.

Gibt zurück

Ein Task-Objekt, das den asynchronen Vorgang darstellt.

Attribute

Gilt für:

CreateAsync(Int64, Nullable<PremiumPageBlobTier>, AccessCondition, BlobRequestOptions, OperationContext, CancellationToken)

Initiiert einen asynchronen Vorgang zum Erstellen eines Seitenblobs. Wenn das Blob bereits vorhanden ist, wird es von diesem Vorgang überschrieben. Um eine Ausnahme auszulösen, wenn das Blob vorhanden ist, übergeben Sie ein objekt, das mit GenerateIfNotExistsCondition()generiert wurde, anstatt zu AccessCondition überschreiben.

[Microsoft.Azure.Storage.DoesServiceRequest]
public virtual System.Threading.Tasks.Task CreateAsync (long size, Microsoft.Azure.Storage.Blob.PremiumPageBlobTier? premiumPageBlobTier, 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 CreateAsync : int64 * Nullable<Microsoft.Azure.Storage.Blob.PremiumPageBlobTier> * Microsoft.Azure.Storage.AccessCondition * Microsoft.Azure.Storage.Blob.BlobRequestOptions * Microsoft.Azure.Storage.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task
override this.CreateAsync : int64 * Nullable<Microsoft.Azure.Storage.Blob.PremiumPageBlobTier> * Microsoft.Azure.Storage.AccessCondition * Microsoft.Azure.Storage.Blob.BlobRequestOptions * Microsoft.Azure.Storage.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Overridable Function CreateAsync (size As Long, premiumPageBlobTier As Nullable(Of PremiumPageBlobTier), accessCondition As AccessCondition, options As BlobRequestOptions, operationContext As OperationContext, cancellationToken As CancellationToken) As Task

Parameter

size
Int64

Die maximale Größe des Blobs in Bytes.

premiumPageBlobTier
Nullable<PremiumPageBlobTier>

Ein PremiumPageBlobTier , der die festzulegende Ebene darstellt.

accessCondition
AccessCondition

Ein AccessCondition-Objekt, das die Bedingung darstellt, die erfüllt werden muss, damit die Anforderung fortgesetzt werden kann. Wenn null, wird keine Bedingung verwendet.

options
BlobRequestOptions

Ein BlobRequestOptions-Objekt, das zusätzliche Optionen für die Anforderung angibt.

operationContext
OperationContext

Ein OperationContext-Objekt, das den Kontext für den aktuellen Vorgang darstellt.

cancellationToken
CancellationToken

Ein CancellationToken, das beim Warten auf den Abschluss einer Aufgabe überwacht werden soll.

Gibt zurück

Ein Task-Objekt, das den asynchronen Vorgang darstellt.

Attribute

Gilt für: