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

Global.asax.cs 489 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
17
18
19
20
21
22
  1. using System.Reflection;
  2. using System.Web.Http;
  3. using Autofac;
  4. using Autofac.Integration.WebApi;
  5. using Microsoft.Bot.Builder.Dialogs;
  6. using Microsoft.Bot.Builder.Dialogs.Internals;
  7. using Microsoft.Bot.Builder.Internals.Fibers;
  8. namespace simpleSendMessage
  9. {
  10. public class WebApiApplication : System.Web.HttpApplication
  11. {
  12. protected void Application_Start()
  13. {
  14. GlobalConfiguration.Configure(WebApiConfig.Register);
  15. }
  16. }
  17. }
Tip!

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

Comments

Loading...