次の方法で共有


ContentSafetyClient.RemoveBlockItemsAsync メソッド

定義

オーバーロード

RemoveBlockItemsAsync(String, RemoveBlockItemsOptions, CancellationToken)

テキスト ブロックリストから BlockItems を削除します。

RemoveBlockItemsAsync(String, RequestContent, RequestContext)

[プロトコルメソッド]テキスト ブロックリストから BlockItems を削除する

RemoveBlockItemsAsync(String, RemoveBlockItemsOptions, CancellationToken)

Source:
ContentSafetyClient.cs

テキスト ブロックリストから BlockItems を削除します。

public virtual System.Threading.Tasks.Task<Azure.Response> RemoveBlockItemsAsync (string blocklistName, Azure.AI.ContentSafety.RemoveBlockItemsOptions removeBlockItemsOptions, System.Threading.CancellationToken cancellationToken = default);
abstract member RemoveBlockItemsAsync : string * Azure.AI.ContentSafety.RemoveBlockItemsOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response>
override this.RemoveBlockItemsAsync : string * Azure.AI.ContentSafety.RemoveBlockItemsOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response>
Public Overridable Function RemoveBlockItemsAsync (blocklistName As String, removeBlockItemsOptions As RemoveBlockItemsOptions, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response)

パラメーター

blocklistName
String

テキスト ブロックリスト名。

removeBlockItemsOptions
RemoveBlockItemsOptions

テキスト ブロックリストから blockItems を削除する要求。

cancellationToken
CancellationToken

使用する取り消しトークン。

戻り値

例外

blocklistName または removeBlockItemsOptions が null です。

blocklistName は空の文字列であり、空でないと想定されていました。

このサンプルでは、必要なパラメーターを使用して RemoveBlockItemsAsync を呼び出す方法を示します。

var credential = new AzureKeyCredential("<key>");
var endpoint = new Uri("<https://my-service.azure.com>");
var client = new ContentSafetyClient(endpoint, credential);

var removeBlockItemsOptions = new RemoveBlockItemsOptions(new string[] 
{
    "<null>"
});
var result = await client.RemoveBlockItemsAsync("<blocklistName>", removeBlockItemsOptions);

注釈

テキスト ブロックリストから blockItems を削除します。 1 つの要求で最大 100 個の BlockItem を削除できます。

適用対象

RemoveBlockItemsAsync(String, RequestContent, RequestContext)

Source:
ContentSafetyClient.cs

[プロトコルメソッド]テキスト ブロックリストから BlockItems を削除する

public virtual System.Threading.Tasks.Task<Azure.Response> RemoveBlockItemsAsync (string blocklistName, Azure.Core.RequestContent content, Azure.RequestContext context = default);
abstract member RemoveBlockItemsAsync : string * Azure.Core.RequestContent * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
override this.RemoveBlockItemsAsync : string * Azure.Core.RequestContent * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
Public Overridable Function RemoveBlockItemsAsync (blocklistName As String, content As RequestContent, Optional context As RequestContext = Nothing) As Task(Of Response)

パラメーター

blocklistName
String

テキスト ブロックリスト名。

content
RequestContent

要求の本文として送信するコンテンツ。

context
RequestContext

要求コンテキスト。これは、呼び出しごとにクライアント パイプラインの既定の動作をオーバーライドできます。

戻り値

サービスから返された応答。

例外

blocklistName または content が null です。

blocklistName は空の文字列であり、空でないと想定されていました。

サービスから成功以外の状態コードが返されました。

このサンプルでは、必要なパラメーターと要求コンテンツを使用して RemoveBlockItemsAsync を呼び出す方法を示します。

var credential = new AzureKeyCredential("<key>");
var endpoint = new Uri("<https://my-service.azure.com>");
var client = new ContentSafetyClient(endpoint, credential);

var data = new {
    blockItemIds = new[] {
        "<String>"
    },
};

Response response = await client.RemoveBlockItemsAsync("<blocklistName>", RequestContent.Create(data), new RequestContext());
Console.WriteLine(response.Status);

適用対象