次の方法で共有


Scripts.DeleteUserDefinedFunctionAsync メソッド

定義

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

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

パラメーター

id
String

削除するユーザー定義関数の ID。

requestOptions
RequestOptions

(省略可能)ユーザー定義関数要求のオプション。

cancellationToken
CancellationToken

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

戻り値

Task発行された要求にUserDefinedFunctionResponse関する情報を含む をUserDefinedFunctionPropertiesラップする を含む 。

この例では、既存のユーザー定義関数への参照を取得して削除します。

Scripts scripts = this.container.Scripts;
UserDefinedFunctionResponse response = await this.container.DeleteUserDefinedFunctionAsync("existingId");

適用対象