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

DocumentClient.ReplaceDocumentCollectionAsync 方法

定义

重载

ReplaceDocumentCollectionAsync(Uri, DocumentCollection, RequestOptions)

将文档集合替换为 Azure Cosmos DB 服务中的异步操作。

ReplaceDocumentCollectionAsync(DocumentCollection, RequestOptions)

将 Azure Cosmos DB 服务中的文档集合替换为异步操作。

ReplaceDocumentCollectionAsync(Uri, DocumentCollection, RequestOptions)

将文档集合替换为 Azure Cosmos DB 服务中的异步操作。

public System.Threading.Tasks.Task<Microsoft.Azure.Documents.Client.ResourceResponse<Microsoft.Azure.Documents.DocumentCollection>> ReplaceDocumentCollectionAsync (Uri documentCollectionUri, Microsoft.Azure.Documents.DocumentCollection documentCollection, Microsoft.Azure.Documents.Client.RequestOptions options = default);
abstract member ReplaceDocumentCollectionAsync : Uri * Microsoft.Azure.Documents.DocumentCollection * Microsoft.Azure.Documents.Client.RequestOptions -> System.Threading.Tasks.Task<Microsoft.Azure.Documents.Client.ResourceResponse<Microsoft.Azure.Documents.DocumentCollection>>
override this.ReplaceDocumentCollectionAsync : Uri * Microsoft.Azure.Documents.DocumentCollection * Microsoft.Azure.Documents.Client.RequestOptions -> System.Threading.Tasks.Task<Microsoft.Azure.Documents.Client.ResourceResponse<Microsoft.Azure.Documents.DocumentCollection>>
Public Function ReplaceDocumentCollectionAsync (documentCollectionUri As Uri, documentCollection As DocumentCollection, Optional options As RequestOptions = Nothing) As Task(Of ResourceResponse(Of DocumentCollection))

参数

documentCollectionUri
Uri

要更新的文档集合的 URI。

documentCollection
DocumentCollection

更新的文档集合。

options
RequestOptions

请求的请求选项。

返回

表示异步操作的服务响应的任务对象。

实现

适用于

ReplaceDocumentCollectionAsync(DocumentCollection, RequestOptions)

将 Azure Cosmos DB 服务中的文档集合替换为异步操作。

public System.Threading.Tasks.Task<Microsoft.Azure.Documents.Client.ResourceResponse<Microsoft.Azure.Documents.DocumentCollection>> ReplaceDocumentCollectionAsync (Microsoft.Azure.Documents.DocumentCollection documentCollection, Microsoft.Azure.Documents.Client.RequestOptions options = default);
abstract member ReplaceDocumentCollectionAsync : Microsoft.Azure.Documents.DocumentCollection * Microsoft.Azure.Documents.Client.RequestOptions -> System.Threading.Tasks.Task<Microsoft.Azure.Documents.Client.ResourceResponse<Microsoft.Azure.Documents.DocumentCollection>>
override this.ReplaceDocumentCollectionAsync : Microsoft.Azure.Documents.DocumentCollection * Microsoft.Azure.Documents.Client.RequestOptions -> System.Threading.Tasks.Task<Microsoft.Azure.Documents.Client.ResourceResponse<Microsoft.Azure.Documents.DocumentCollection>>
Public Function ReplaceDocumentCollectionAsync (documentCollection As DocumentCollection, Optional options As RequestOptions = Nothing) As Task(Of ResourceResponse(Of DocumentCollection))

参数

documentCollection
DocumentCollection

更新的文档集合。

options
RequestOptions

请求的请求选项。

返回

包含 System.Threading.Tasks 的 , ResourceResponse<TResource> 它包装 DocumentCollection 包含已更新资源记录的 。

实现

适用于