IDocumentClient.DeleteDocumentCollectionAsync メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
DeleteDocumentCollectionAsync(String, RequestOptions) |
DocumentCollection非同期操作として Azure Cosmos DB サービスから を削除します。 |
DeleteDocumentCollectionAsync(Uri, RequestOptions) |
Azure Cosmos DB サービスで非同期操作としてコレクションを削除します。 |
DeleteDocumentCollectionAsync(String, RequestOptions)
DocumentCollection非同期操作として Azure Cosmos DB サービスから を削除します。
public System.Threading.Tasks.Task<Microsoft.Azure.Documents.Client.ResourceResponse<Microsoft.Azure.Documents.DocumentCollection>> DeleteDocumentCollectionAsync (string documentCollectionLink, Microsoft.Azure.Documents.Client.RequestOptions options = default);
abstract member DeleteDocumentCollectionAsync : string * Microsoft.Azure.Documents.Client.RequestOptions -> System.Threading.Tasks.Task<Microsoft.Azure.Documents.Client.ResourceResponse<Microsoft.Azure.Documents.DocumentCollection>>
Public Function DeleteDocumentCollectionAsync (documentCollectionLink As String, Optional options As RequestOptions = Nothing) As Task(Of ResourceResponse(Of DocumentCollection))
パラメーター
- options
- RequestOptions
(省略可能)要求の要求オプション。
戻り値
System.Threading.Tasks発行された要求にResourceResponse<TResource>関する情報を格納する を含む 。
例外
が設定されていない場合 documentCollectionLink
。
この例外は、さまざまな種類のエラーをカプセル化できます。 特定のエラーを特定するには、常に StatusCode プロパティを参照してください。 ドキュメントの作成時に取得できる一般的なコードは次のとおりです。
StatusCode | 例外の理由 |
---|---|
404 | NotFound - 削除しようとしたリソースが存在しなかったことを意味します。 |
例
//Delete a collection using its selfLink property
//To get the collectionLink you would have to query for the Collection, using CreateDocumentCollectionQuery(), and then refer to its .SelfLink property
await client.DeleteDocumentCollectionAsync(collectionLink);
こちらもご覧ください
適用対象
DeleteDocumentCollectionAsync(Uri, RequestOptions)
Azure Cosmos DB サービスで非同期操作としてコレクションを削除します。
public System.Threading.Tasks.Task<Microsoft.Azure.Documents.Client.ResourceResponse<Microsoft.Azure.Documents.DocumentCollection>> DeleteDocumentCollectionAsync (Uri documentCollectionUri, Microsoft.Azure.Documents.Client.RequestOptions options = default);
abstract member DeleteDocumentCollectionAsync : Uri * Microsoft.Azure.Documents.Client.RequestOptions -> System.Threading.Tasks.Task<Microsoft.Azure.Documents.Client.ResourceResponse<Microsoft.Azure.Documents.DocumentCollection>>
Public Function DeleteDocumentCollectionAsync (documentCollectionUri As Uri, Optional options As RequestOptions = Nothing) As Task(Of ResourceResponse(Of DocumentCollection))
パラメーター
- documentCollectionUri
- Uri
削除するドキュメント コレクションの URI。
- options
- RequestOptions
(省略可能) RequestOptions 要求の 。
戻り値
非同期操作のサービス応答を表すタスク オブジェクト。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Azure SDK for .NET