summaryrefslogtreecommitdiffstats
path: root/src/InfoCard/InfoCardRelyingParty/Global.asax.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/InfoCard/InfoCardRelyingParty/Global.asax.cs')
-rw-r--r--src/InfoCard/InfoCardRelyingParty/Global.asax.cs40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/InfoCard/InfoCardRelyingParty/Global.asax.cs b/src/InfoCard/InfoCardRelyingParty/Global.asax.cs
new file mode 100644
index 0000000..45e091f
--- /dev/null
+++ b/src/InfoCard/InfoCardRelyingParty/Global.asax.cs
@@ -0,0 +1,40 @@
+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.
+
+ }
+
+ }
+}