次の方法で共有


CosmosContainer.DeleteItemStreamAsync メソッド

定義

非同期操作として Azure Cosmos サービスから項目を削除します。

public abstract System.Threading.Tasks.Task<Azure.Response> DeleteItemStreamAsync (string id, Azure.Cosmos.PartitionKey partitionKey, Azure.Cosmos.ItemRequestOptions requestOptions = default, System.Threading.CancellationToken cancellationToken = default);
abstract member DeleteItemStreamAsync : string * Azure.Cosmos.PartitionKey * Azure.Cosmos.ItemRequestOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response>
Public MustOverride Function DeleteItemStreamAsync (id As String, partitionKey As PartitionKey, Optional requestOptions As ItemRequestOptions = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response)

パラメーター

id
String

Cosmos アイテム ID

partitionKey
PartitionKey

項目のパーティション キー。 PartitionKey

requestOptions
ItemRequestOptions

(省略可能)アイテム要求のオプション ItemRequestOptions

cancellationToken
CancellationToken

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

戻り値

Task削除リソース レコードをResponse含む をStreamラップする を含む 。

Cosmos からアイテムを削除する

using(Response response = await this.container.DeleteItemStreamAsync("itemId", new PartitionKey("itemPartitionKey")))
{
}

適用対象