TextTranslationTransliterateOptions Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
TextTranslationTransliterateOptions(String, String, String, IEnumerable<String>, Guid) |
Initializes new instance of TextTranslationTransliterateOptions. |
TextTranslationTransliterateOptions(String, String, String, String, Guid) |
Initializes new instance of TextTranslationTransliterateOptions. |
TextTranslationTransliterateOptions(String, String, String, IEnumerable<String>, Guid)
Initializes new instance of TextTranslationTransliterateOptions.
public TextTranslationTransliterateOptions (string language, string fromScript, string toScript, System.Collections.Generic.IEnumerable<string> content, Guid clientTraceId = default);
new Azure.AI.Translation.Text.TextTranslationTransliterateOptions : string * string * string * seq<string> * Guid -> Azure.AI.Translation.Text.TextTranslationTransliterateOptions
Public Sub New (language As String, fromScript As String, toScript As String, content As IEnumerable(Of String), Optional clientTraceId As Guid = Nothing)
Parameters
- language
- String
Specifies the language of the text to convert from one script to another. Possible languages are listed in the transliteration scope obtained by querying the service for its supported languages.
- fromScript
- String
Specifies the script used by the input text. Look up supported languages using the transliteration scope, to find input scripts available for the selected language.
- toScript
- String
Specifies the output script. Look up supported languages using the transliteration scope, to find output scripts available for the selected combination of input language and input script.
- content
- IEnumerable<String>
Array of the text to be transliterated.
- clientTraceId
- Guid
A client-generated GUID to uniquely identify the request.
Applies to
TextTranslationTransliterateOptions(String, String, String, String, Guid)
Initializes new instance of TextTranslationTransliterateOptions.
public TextTranslationTransliterateOptions (string language, string fromScript, string toScript, string content, Guid clientTraceId = default);
new Azure.AI.Translation.Text.TextTranslationTransliterateOptions : string * string * string * string * Guid -> Azure.AI.Translation.Text.TextTranslationTransliterateOptions
Public Sub New (language As String, fromScript As String, toScript As String, content As String, Optional clientTraceId As Guid = Nothing)
Parameters
- language
- String
Specifies the language of the text to convert from one script to another. Possible languages are listed in the transliteration scope obtained by querying the service for its supported languages.
- fromScript
- String
Specifies the script used by the input text. Look up supported languages using the transliteration scope, to find input scripts available for the selected language.
- toScript
- String
Specifies the output script. Look up supported languages using the transliteration scope, to find output scripts available for the selected combination of input language and input script.
- content
- String
The text to be transliterated.
- clientTraceId
- Guid
A client-generated GUID to uniquely identify the request.
Applies to
Azure SDK for .NET