Azure AI Bot Service
An Azure service that provides an integrated environment for bot development.
941 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
How to add Typing Indicator whenever BOT have received a message and is processing?
Add the following code at OnTurnAsync function before await base.OnTurnAsync(turnContext, cancellationToken); :
await turnContext.SendActivityAsync(new Activity { Type = ActivityTypes.Typing }, cancellationToken);