次の方法で共有


ContainerBuilder.CreateIfNotExistsAsync メソッド

定義

オーバーロード

CreateIfNotExistsAsync(ThroughputProperties, CancellationToken)

現在の fluent 定義にコンテナーが存在しない場合は、コンテナーを作成します。

CreateIfNotExistsAsync(Nullable<Int32>, CancellationToken)

現在の fluent 定義にコンテナーが存在しない場合は、コンテナーを作成します。

CreateIfNotExistsAsync(ThroughputProperties, CancellationToken)

ソース:
ContainerBuilder.cs

現在の fluent 定義にコンテナーが存在しない場合は、コンテナーを作成します。

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)

パラメーター

throughputProperties
ThroughputProperties

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

cancellationToken
CancellationToken

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

戻り値

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

適用対象

CreateIfNotExistsAsync(Nullable<Int32>, CancellationToken)

ソース:
ContainerBuilder.cs

現在の fluent 定義にコンテナーが存在しない場合は、コンテナーを作成します。

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)

パラメーター

throughput
Nullable<Int32>

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

cancellationToken
CancellationToken

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

戻り値

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

適用対象