次の方法で共有


ContentSafetyClient.RemoveBlockItems メソッド

定義

オーバーロード

RemoveBlockItems(String, RemoveBlockItemsOptions, CancellationToken)

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

RemoveBlockItems(String, RequestContent, RequestContext)

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

RemoveBlockItems(String, RemoveBlockItemsOptions, CancellationToken)

Source:
ContentSafetyClient.cs

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

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

パラメーター

blocklistName
String

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

removeBlockItemsOptions
RemoveBlockItemsOptions

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

cancellationToken
CancellationToken

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

戻り値

例外

blocklistName または removeBlockItemsOptions が null です。

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

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

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 = client.RemoveBlockItems("<blocklistName>", removeBlockItemsOptions);

注釈

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

適用対象

RemoveBlockItems(String, RequestContent, RequestContext)

Source:
ContentSafetyClient.cs

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

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

パラメーター

blocklistName
String

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

content
RequestContent

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

context
RequestContext

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

戻り値

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

例外

blocklistName または content が null です。

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

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

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

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 = client.RemoveBlockItems("<blocklistName>", RequestContent.Create(data), new RequestContext());
Console.WriteLine(response.Status);

適用対象