diff options
Diffstat (limited to 'src/InfoCard/InfoCardRelyingParty/Global.asax.cs')
-rw-r--r-- | src/InfoCard/InfoCardRelyingParty/Global.asax.cs | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/src/InfoCard/InfoCardRelyingParty/Global.asax.cs b/src/InfoCard/InfoCardRelyingParty/Global.asax.cs deleted file mode 100644 index 45e091f..0000000 --- a/src/InfoCard/InfoCardRelyingParty/Global.asax.cs +++ /dev/null @@ -1,40 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Web; -using System.Web.Security; -using System.Web.SessionState; - -namespace InfoCardRelyingParty { - public class Global : System.Web.HttpApplication { - - void Application_Start(object sender, EventArgs e) { - // Code that runs on application startup - - } - - 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 - - } - - void Session_Start(object sender, EventArgs e) { - // Code that runs when a new session is started - - } - - void Session_End(object sender, EventArgs e) { - // Code that runs when a session ends. - // Note: The Session_End event is raised only when the sessionstate mode - // is set to InProc in the Web.config file. If session mode is set to StateServer - // or SQLServer, the event is not raised. - - } - - } -} |