Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

FlightsDialog.cs 469 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  1. namespace MultiDialogsBot.Dialogs
  2. {
  3. using System;
  4. using System.Threading.Tasks;
  5. using Microsoft.Bot.Builder.Dialogs;
  6. using Microsoft.Bot.Connector;
  7. [Serializable]
  8. public class FlightsDialog : IDialog<object>
  9. {
  10. public async Task StartAsync(IDialogContext context)
  11. {
  12. context.Fail(new NotImplementedException("Flights Dialog is not implemented and is instead being used to show context.Fail"));
  13. }
  14. }
  15. }
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...