예제 #1
0
 protected override async Task OnMessageActivityAsync(ITurnContext <IMessageActivity> turnContext, CancellationToken cancellationToken)
 {
     string sourceLanguage = "en";
     string botResponse    = GoogleTranslator.TranslateText(turnContext.Activity.Text, sourceLanguage);
     await turnContext.SendActivityAsync(MessageFactory.Text(botResponse), cancellationToken);
 }