/MyVMPortal/Global.asax.cs
https://github.com/mwasham/wasvcmgmntapi · C# · 31 lines · 23 code · 5 blank · 3 comment · 0 complexity · 344425519f584d3be3dd6615a72007ed MD5 · raw file
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.Routing;
- using System.Web.Security;
- using MyVMPortal;
- namespace MyVMPortal
- {
- public class Global : HttpApplication
- {
- void Application_Start(object sender, EventArgs e)
- {
- // Code that runs on application startup
- AuthConfig.RegisterOpenAuth();
- }
- void Application_End(object sender, EventArgs e)
- {
- // Code that runs on application shutdown
- }
- void Application_Error(object sender, EventArgs e)
- {
- // Code that runs when an unhandled error occurs
- }
- }
- }