Partager via


ContainerBuilder.CreateIfNotExistsAsync Méthode

Définition

Surcharges

CreateIfNotExistsAsync(ThroughputProperties, CancellationToken)

Crée un conteneur s’il n’existe pas avec la définition fluent actuelle.

CreateIfNotExistsAsync(Nullable<Int32>, CancellationToken)

Crée un conteneur s’il n’existe pas avec la définition fluent actuelle.

CreateIfNotExistsAsync(ThroughputProperties, CancellationToken)

Source:
ContainerBuilder.cs

Crée un conteneur s’il n’existe pas avec la définition fluent actuelle.

public System.Threading.Tasks.Task<Microsoft.Azure.Cosmos.ContainerResponse> CreateIfNotExistsAsync (Microsoft.Azure.Cosmos.ThroughputProperties throughputProperties, System.Threading.CancellationToken cancellationToken = default);
member this.CreateIfNotExistsAsync : Microsoft.Azure.Cosmos.ThroughputProperties * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.Cosmos.ContainerResponse>
Public Function CreateIfNotExistsAsync (throughputProperties As ThroughputProperties, Optional cancellationToken As CancellationToken = Nothing) As Task(Of ContainerResponse)

Paramètres

throughputProperties
ThroughputProperties

Débit souhaité pour le conteneur exprimé en unités de requête par seconde.

cancellationToken
CancellationToken

(Facultatif) CancellationToken représentant l’annulation de la demande.

Retours

Tâche asynchrone représentant la création d’un Container basé sur la définition Fluent.

S’applique à

CreateIfNotExistsAsync(Nullable<Int32>, CancellationToken)

Source:
ContainerBuilder.cs

Crée un conteneur s’il n’existe pas avec la définition fluent actuelle.

public System.Threading.Tasks.Task<Microsoft.Azure.Cosmos.ContainerResponse> CreateIfNotExistsAsync (int? throughput = default, System.Threading.CancellationToken cancellationToken = default);
member this.CreateIfNotExistsAsync : Nullable<int> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.Cosmos.ContainerResponse>
Public Function CreateIfNotExistsAsync (Optional throughput As Nullable(Of Integer) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of ContainerResponse)

Paramètres

throughput
Nullable<Int32>

Débit souhaité pour le conteneur exprimé en unités de requête par seconde.

cancellationToken
CancellationToken

(Facultatif) CancellationToken représentant l’annulation de la demande.

Retours

Tâche asynchrone représentant la création d’un Container basé sur la définition Fluent.

S’applique à