Freigeben über


ContentSafetyClient.GetTextBlocklistItemAsync Methode

Definition

Überlädt

GetTextBlocklistItemAsync(String, String, RequestContext)

[Protokollmethode] Abrufen von BlockItem By blocklistName und blockItemId

GetTextBlocklistItemAsync(String, String, CancellationToken)

Abrufen von BlockItem By blocklistName und blockItemId.

GetTextBlocklistItemAsync(String, String, RequestContext)

Source:
ContentSafetyClient.cs

[Protokollmethode] Abrufen von BlockItem By blocklistName und blockItemId

public virtual System.Threading.Tasks.Task<Azure.Response> GetTextBlocklistItemAsync (string blocklistName, string blockItemId, Azure.RequestContext context);
abstract member GetTextBlocklistItemAsync : string * string * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
override this.GetTextBlocklistItemAsync : string * string * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
Public Overridable Function GetTextBlocklistItemAsync (blocklistName As String, blockItemId As String, context As RequestContext) As Task(Of Response)

Parameter

blocklistName
String

Name der Textblockliste.

blockItemId
String

Element-ID blockieren. Es wird uuid.

context
RequestContext

Der Anforderungskontext, der das Standardverhalten der Clientpipeline pro Aufruf außer Kraft setzen kann.

Gibt zurück

Die vom Dienst zurückgegebene Antwort.

Ausnahmen

blocklistName oder blockItemId ist NULL.

blocklistName oder blockItemId ist eine leere Zeichenfolge und wurde erwartet, dass sie nicht leer ist.

Der Dienst hat einen nicht erfolgreichen status Code zurückgegeben.

Beispiele

In diesem Beispiel wird gezeigt, wie Sie GetTextBlocklistItemAsync mit den erforderlichen Parametern aufrufen und das Ergebnis analysieren.

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

Response response = await client.GetTextBlocklistItemAsync("<blocklistName>", "<blockItemId>", new RequestContext());

JsonElement result = JsonDocument.Parse(response.ContentStream).RootElement;
Console.WriteLine(result.GetProperty("blockItemId").ToString());
Console.WriteLine(result.GetProperty("description").ToString());
Console.WriteLine(result.GetProperty("text").ToString());

Gilt für:

GetTextBlocklistItemAsync(String, String, CancellationToken)

Source:
ContentSafetyClient.cs

Abrufen von BlockItem By blocklistName und blockItemId.

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

Parameter

blocklistName
String

Name der Textblockliste.

blockItemId
String

Element-ID blockieren. Es wird uuid.

cancellationToken
CancellationToken

Das zu verwendende Abbruchtoken.

Gibt zurück

Ausnahmen

blocklistName oder blockItemId ist NULL.

blocklistName oder blockItemId ist eine leere Zeichenfolge und wurde erwartet, dass sie nicht leer ist.

Beispiele

In diesem Beispiel wird gezeigt, wie Sie GetTextBlocklistItemAsync mit den erforderlichen Parametern aufrufen.

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

var result = await client.GetTextBlocklistItemAsync("<blocklistName>", "<blockItemId>");

Hinweise

Abrufen von blockItem By blockItemId aus einer Textblockliste.

Gilt für: