For the complete documentation index, see llms.txt. This page is also available as Markdown.
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.
using (Translation T = new Translation())
{
T.ClientSecret = "...";
TranslationResult TR = T.Translate("hello how are you doing friend", "en", "de");
}