I\'m using PromptDialog.Choice() to present different options to my users. The number of attempts is set to 0, so if they type in anything that is not a valid optio
PromptDialog.Choice()
I think that calling MessageReceivedAsync will be the way to go here. The key is to pass an IAwaitable from the activity you are creating.
MessageReceivedAsync
IAwaitable
The code should be like:
await MessageReceivedAsync(context, Awaitable.FromItem(yourActivity));