次の方法で共有


ContainerBuilder.CreateAsync メソッド

定義

オーバーロード

CreateAsync(ThroughputProperties, CancellationToken)

現在の fluent 定義を使用してコンテナーを作成します。

CreateAsync(Nullable<Int32>, CancellationToken)

現在の fluent 定義を使用してコンテナーを作成します。

CreateAsync(ThroughputProperties, CancellationToken)

ソース:
ContainerBuilder.cs

現在の fluent 定義を使用してコンテナーを作成します。

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)

パラメーター

throughputProperties
ThroughputProperties

1 秒あたりの要求ユニット数で表されるコンテナーの必要なスループット。

cancellationToken
CancellationToken

(省略可能) CancellationToken 要求の取り消しを表します。

戻り値

Fluent 定義に基づく の Container 作成を表す非同期タスク。

適用対象

CreateAsync(Nullable<Int32>, CancellationToken)

ソース:
ContainerBuilder.cs

現在の fluent 定義を使用してコンテナーを作成します。

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)

パラメーター

throughput
Nullable<Int32>

1 秒あたりの要求ユニット数で表されるコンテナーの必要なスループット。

cancellationToken
CancellationToken

(省略可能) CancellationToken 要求の取り消しを表します。

戻り値

Fluent 定義に基づく の Container 作成を表す非同期タスク。

適用対象