TextTranslationClient.LookupDictionaryEntries メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
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
使用する取り消しトークン。
戻り値
例外
from
、to
、または 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
使用する取り消しトークン。
戻り値
例外
from
、to
、または word
が null です。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Azure SDK for .NET