Partager via


ContainerBuilder.CreateAsync Méthode

Définition

Surcharges

CreateAsync(ThroughputProperties, CancellationToken)

Crée un conteneur avec la définition fluent actuelle.

CreateAsync(Nullable<Int32>, CancellationToken)

Crée un conteneur avec la définition fluent actuelle.

CreateAsync(ThroughputProperties, CancellationToken)

Source:
ContainerBuilder.cs

Crée un conteneur avec la définition fluent actuelle.

public System.Threading.Tasks.Task<Microsoft.Azure.Cosmos.ContainerResponse> CreateAsync (Microsoft.Azure.Cosmos.ThroughputProperties throughputProperties, System.Threading.CancellationToken cancellationToken = default);
member this.CreateAsync : Microsoft.Azure.Cosmos.ThroughputProperties * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.Cosmos.ContainerResponse>
Public Function CreateAsync (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 à

CreateAsync(Nullable<Int32>, CancellationToken)

Source:
ContainerBuilder.cs

Crée un conteneur avec la définition fluent actuelle.

public System.Threading.Tasks.Task<Microsoft.Azure.Cosmos.ContainerResponse> CreateAsync (int? throughput = default, System.Threading.CancellationToken cancellationToken = default);
member this.CreateAsync : Nullable<int> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.Cosmos.ContainerResponse>
Public Function CreateAsync (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 à