Mercurial > silverbladetech
comparison SilverlightExampleApp/SilverlightExampleApp.Web/Global.asax.cs @ 49:502f5f365649
Initial load for Silverlight Example Application
author | Steven Hollidge <stevenhollidge@hotmail.com> |
---|---|
date | Tue, 17 Apr 2012 17:57:52 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
48:d617b54e1f47 | 49:502f5f365649 |
---|---|
1 using System; | |
2 using System.Web; | |
3 | |
4 namespace SilverlightExampleApp.Web | |
5 { | |
6 public class Global : HttpApplication | |
7 { | |
8 protected void Application_Start(object sender, EventArgs e) | |
9 { | |
10 } | |
11 | |
12 protected void Session_Start(object sender, EventArgs e) | |
13 { | |
14 | |
15 } | |
16 | |
17 protected void Application_BeginRequest(object sender, EventArgs e) | |
18 { | |
19 | |
20 } | |
21 | |
22 protected void Application_AuthenticateRequest(object sender, EventArgs e) | |
23 { | |
24 | |
25 } | |
26 | |
27 protected void Application_Error(object sender, EventArgs e) | |
28 { | |
29 | |
30 } | |
31 | |
32 protected void Session_End(object sender, EventArgs e) | |
33 { | |
34 | |
35 } | |
36 | |
37 protected void Application_End(object sender, EventArgs e) | |
38 { | |
39 | |
40 } | |
41 } | |
42 } |