你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
IChangeFeedDocumentClient.CreateDocumentAsync 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
在 Azure DocumentDB 数据库服务中将文档创建为异步操作。
public System.Threading.Tasks.Task<Microsoft.Azure.Documents.Client.IResourceResponse<Microsoft.Azure.Documents.Document>> CreateDocumentAsync (string collectionLink, object document, Microsoft.Azure.Documents.Client.RequestOptions options = default, bool disableAutomaticIdGeneration = false, System.Threading.CancellationToken cancellationToken = default);
abstract member CreateDocumentAsync : string * obj * Microsoft.Azure.Documents.Client.RequestOptions * bool * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.Documents.Client.IResourceResponse<Microsoft.Azure.Documents.Document>>
Public Function CreateDocumentAsync (collectionLink As String, document As Object, Optional options As RequestOptions = Nothing, Optional disableAutomaticIdGeneration As Boolean = false, Optional cancellationToken As CancellationToken = Nothing) As Task(Of IResourceResponse(Of Document))
参数
- collectionLink
- String
要创建文档的 的链接 DocumentCollection 。 例如 dbs/db_rid/colls/coll_rid/
- document
- Object
要创建的文档对象。
- options
- RequestOptions
RequestOptions此请求的 。
- disableAutomaticIdGeneration
- Boolean
禁用自动 ID 生成,如果为 True,则当文档中缺少 id 属性时,系统将引发异常。
- cancellationToken
- CancellationToken
一个 CancellationToken,它可由其他对象或线程用来接收取消通知。
返回
一个 System.Threading.TasksIResourceResponse<TResource> ,它包含有关发出的请求的信息。