Translation

The Translation component adds language translation capabilities to any Wisej.NET application. It uses Yandex, Google, Bing, or a custom defined provider (Google and Bing are not yet implemented – only Yandex is currently supported). The component accepts any text and fires an event on the server when the translation is completed.

How to Use

The Translation extension can be added to a Wisej.NET project using NuGet Package Manager.

using (Translation T = new Translation())
{
    T.ClientSecret = "...";
    TranslationResult TR = T.Translate("hello how are you doing friend", "en", "de");
}

Last updated