次の方法で共有


TextTranslationClient.LookupDictionaryEntries メソッド

定義

オーバーロード

LookupDictionaryEntries(String, String, IEnumerable<String>, String, CancellationToken)

辞書の参照。

LookupDictionaryEntries(String, String, String, String, CancellationToken)

辞書の参照。

LookupDictionaryEntries(String, String, IEnumerable<String>, String, CancellationToken)

Source:
TextTranslationClient.cs

辞書の参照。

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

パラメーター

from
String

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

to
String

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

words
IEnumerable<String>

ディクショナリ内で検索する単語の配列。

clientTraceId
String

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

cancellationToken
CancellationToken

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

戻り値

例外

fromto、または words が null です。

適用対象

LookupDictionaryEntries(String, String, String, String, CancellationToken)

Source:
TextTranslationClient.cs

辞書の参照。

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

パラメーター

from
String

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

to
String

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

word
String

辞書内で検索する単語。

clientTraceId
String

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

cancellationToken
CancellationToken

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

戻り値

例外

fromto、または word が null です。

適用対象