你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

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

返回

一个 TaskResponse ,它包含包装 Stream 包含删除资源记录的 。

示例

从 Cosmos 中删除项

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

适用于