I want to add a typing indicator before the bot reply to the user on the WaterfallStepContext. Is it possible?
I want to add a typing indicator before the bot reply to the user on the WaterfallStepContext. Is it possible?
You can send a "Typing" Activity from a WaterfallStepContext by
Activity TypingActivity = stepContext.Context.Activity.CreateReply();
TypingActivity.Type = ActivityTypes.Typing;
await stepContext.Context.SendActivityAsync(TypingActivity);