次の方法で共有


TextTranslationClient.LookupDictionaryExamplesAsync メソッド

定義

オーバーロード

LookupDictionaryExamplesAsync(String, String, InputTextWithTranslation, String, CancellationToken)

辞書の例。

LookupDictionaryExamplesAsync(String, String, IEnumerable<InputTextWithTranslation>, String, CancellationToken)

辞書の例。

LookupDictionaryExamplesAsync(String, String, InputTextWithTranslation, String, CancellationToken)

Source:
TextTranslationClient.cs

辞書の例。

public virtual System.Threading.Tasks.Task<Azure.Response<System.Collections.Generic.IReadOnlyList<Azure.AI.Translation.Text.DictionaryExampleItem>>> LookupDictionaryExamplesAsync (string from, string to, Azure.AI.Translation.Text.InputTextWithTranslation content, string clientTraceId = default, System.Threading.CancellationToken cancellationToken = default);
abstract member LookupDictionaryExamplesAsync : string * string * Azure.AI.Translation.Text.InputTextWithTranslation * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<System.Collections.Generic.IReadOnlyList<Azure.AI.Translation.Text.DictionaryExampleItem>>>
override this.LookupDictionaryExamplesAsync : string * string * Azure.AI.Translation.Text.InputTextWithTranslation * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<System.Collections.Generic.IReadOnlyList<Azure.AI.Translation.Text.DictionaryExampleItem>>>
Public Overridable Function LookupDictionaryExamplesAsync (from As String, to As String, content As InputTextWithTranslation, Optional clientTraceId As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of IReadOnlyList(Of DictionaryExampleItem)))

パラメーター

from
String

入力テキストの言語を指定します。 ソース言語は、ディクショナリ スコープに含まれているサポートされている言語のいずれかである必要があります。

to
String

出力テキストの言語を指定します。 ターゲット言語は、ディクショナリ スコープに含まれるサポートされている言語のいずれかである必要があります。

content
InputTextWithTranslation

ディクショナリに送信されるテキストの配列。

clientTraceId
String

要求を一意に識別する、クライアントで生成された GUID。

cancellationToken
CancellationToken

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

戻り値

例外

fromto、または content が null です。

適用対象

LookupDictionaryExamplesAsync(String, String, IEnumerable<InputTextWithTranslation>, String, CancellationToken)

Source:
TextTranslationClient.cs

辞書の例。

public virtual System.Threading.Tasks.Task<Azure.Response<System.Collections.Generic.IReadOnlyList<Azure.AI.Translation.Text.DictionaryExampleItem>>> LookupDictionaryExamplesAsync (string from, string to, System.Collections.Generic.IEnumerable<Azure.AI.Translation.Text.InputTextWithTranslation> content, string clientTraceId = default, System.Threading.CancellationToken cancellationToken = default);
abstract member LookupDictionaryExamplesAsync : string * string * seq<Azure.AI.Translation.Text.InputTextWithTranslation> * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<System.Collections.Generic.IReadOnlyList<Azure.AI.Translation.Text.DictionaryExampleItem>>>
override this.LookupDictionaryExamplesAsync : string * string * seq<Azure.AI.Translation.Text.InputTextWithTranslation> * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<System.Collections.Generic.IReadOnlyList<Azure.AI.Translation.Text.DictionaryExampleItem>>>
Public Overridable Function LookupDictionaryExamplesAsync (from As String, to As String, content As IEnumerable(Of InputTextWithTranslation), Optional clientTraceId As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of IReadOnlyList(Of DictionaryExampleItem)))

パラメーター

from
String

入力テキストの言語を指定します。 ソース言語は、ディクショナリ スコープに含まれているサポートされている言語のいずれかである必要があります。

to
String

出力テキストの言語を指定します。 ターゲット言語は、ディクショナリ スコープに含まれるサポートされている言語のいずれかである必要があります。

content
IEnumerable<InputTextWithTranslation>

ディクショナリに送信されるテキストの配列。

clientTraceId
String

要求を一意に識別する、クライアントで生成された GUID。

cancellationToken
CancellationToken

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

戻り値

例外

fromto、または content が null です。

適用対象