你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

AITranslationTextModelFactory.DictionaryExampleItem Method

Definition

Initializes a new instance of DictionaryExampleItem.

public static Azure.AI.Translation.Text.DictionaryExampleItem DictionaryExampleItem (string normalizedSource = default, string normalizedTarget = default, System.Collections.Generic.IEnumerable<Azure.AI.Translation.Text.DictionaryExample> examples = default);
static member DictionaryExampleItem : string * string * seq<Azure.AI.Translation.Text.DictionaryExample> -> Azure.AI.Translation.Text.DictionaryExampleItem
Public Shared Function DictionaryExampleItem (Optional normalizedSource As String = Nothing, Optional normalizedTarget As String = Nothing, Optional examples As IEnumerable(Of DictionaryExample) = Nothing) As DictionaryExampleItem

Parameters

normalizedSource
String

A string giving the normalized form of the source term. Generally, this should be identical to the value of the Text field at the matching list index in the body of the request.

normalizedTarget
String

A string giving the normalized form of the target term. Generally, this should be identical to the value of the Translation field at the matching list index in the body of the request.

examples
IEnumerable<DictionaryExample>

A list of examples for the (source term, target term) pair.

Returns

A new DictionaryExampleItem instance for mocking.

Applies to