コード例 #1
0
ファイル: NoneDialog.cs プロジェクト: glimadev/bot-marathon
        private async Task NoneMessageReceivedAsync(IDialogContext context, IAwaitable <object> result)
        {
            var activity = await result as Activity;

            await context.DontUnderstandMessage();

            context.Done(new ResultDialog {
                Activity = activity, Wait = true
            });
        }