summaryrefslogtreecommitdiffstats
path: root/src/InfoCard/InfoCardRelyingParty/Global.asax.cs
diff options
context:
space:
mode:
authorDavid Christiansen <coding@davedoes.net>2012-03-16 10:33:38 +0000
committerDavid Christiansen <coding@davedoes.net>2012-03-16 10:33:38 +0000
commit32834c15862a447b7d362a2904f241d842660a2c (patch)
tree867a7995c20635445d299d1db4dd468026fc0e97 /src/InfoCard/InfoCardRelyingParty/Global.asax.cs
parent2df3e36b4bfe3f01e17dceebab0a7951db21ecc7 (diff)
downloadDotNetOpenAuth.Samples-32834c15862a447b7d362a2904f241d842660a2c.zip
DotNetOpenAuth.Samples-32834c15862a447b7d362a2904f241d842660a2c.tar.gz
DotNetOpenAuth.Samples-32834c15862a447b7d362a2904f241d842660a2c.tar.bz2
Added reference to fixed DotNetOpenAuth.OpenIdOAuth package.
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.
+
+ }
+
+ }
+}