how to close a QnAMaker dialog?
Clash Royale CLAN TAG #URR8PPP how to close a QnAMaker dialog? I am trying to closing a QnAMaker dialog so that user can go back to the Luis dialog and use it again. here is my code that i use in luisdialog.cs: [LuisIntent("FAQ")] public async Task FAQ(IDialogContext context, LuisResult result) { await context.PostAsync("FAQ"); var userQuestion = (context.Activity as Activity).Text; await context.Forward(new QnADialog(), ResumeAfterQnA, context.Activity, CancellationToken.None); //await Task.Run(() => context.Call(new QnADialog(), Callback)); } private async Task ResumeAfterQnA(IDialogContext context, IAwaitable<object> result) { context.Done<object>(null); } While here is the QnA dialog: [Serializable] [QnAMakerService("endpoint", "knowledge base id", "subscription key")] public class QnADialog : QnAMakerDialog<object> { } I tried to override the s...