次の方法で共有


CosmosScripts.DeleteTriggerAsync メソッド

定義

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

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

パラメーター

id
String

削除するトリガーの ID。

requestOptions
RequestOptions

(省略可能)トリガー要求のオプション RequestOptions

cancellationToken
CancellationToken

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

戻り値

Task発行された要求にResponse<T>関する情報を含む をTriggerPropertiesラップする を含む 。

この例では、既存のトリガーへの参照を取得し、削除します。

Scripts scripts = this.container.Scripts;
Response<TriggerProperties> response = await scripts.DeleteTriggerAsync("existingId");

適用対象