AzureCognitiveServicesTranslationService class

Translator based on Azure Cognitive Services API Azure Cognitive Services API Documentation: https://docs.microsoft.com/en-us/azure/cognitive-services/translator/quickstart-translator?tabs=csharp

Inheritance
Mixed in types

Constructors

AzureCognitiveServicesTranslationService({required String subscriptionKey, String? region, required Logger logger})
subscriptionKey - Azure Subscription Key, read mode here: https://docs.microsoft.com/en-us/azure/cognitive-services/authentication?tabs=powershell region - Azure Subscription Region, read more here: https://docs.microsoft.com/en-us/azure/cognitive-services/authentication?tabs=powershell

Properties

hashCode int
The hash code for this object.
no setterinherited
logger Logger
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited
translate(String source, LanguageCode sourceLanguage, LanguageCode target) Future<String>
Translates given text to specified language source - text which should be translated sourceLanguage - the language in which source was given target - language to which source should be translated
override
translateBulk(List<String> sources, LanguageCode sourceLanguage, List<LanguageCode> targets) Future<List<Translation>>
Translates given texts to specified languages sources - list of texts which should be translated sourceLanguage - the language in which sources were given targets - list of languages to which sources should be translated
override
translateBulkToSingleTarget(List<String> sources, LanguageCode sourceLanguage, LanguageCode target) Future<List<String>>
Translates given texts to specified language sources - list of text which should be translated sourceLanguage - the language in which sources were given target - language to which sources should be translated
override
translateToTargetsList(String source, LanguageCode sourceLanguage, List<LanguageCode> targets) Future<Translation>
Translates given text to specified languages source - text which should be translated sourceLanguage - the language in which source was given targets - list of languages to which source should be translated
override

Operators

operator ==(Object other) bool
The equality operator.
inherited