Example #1
0
 protected void Application_End(object sender, EventArgs e)
 {
     ExceptionsLogging.Info("Application has Application End, " + sender.GetType().Name);
 }
Example #2
0
 protected void Session_Start(object sender, EventArgs e)
 {
     ExceptionsLogging.Info("Application has Started, " + sender.GetType().Name);
 }
Example #3
0
 protected void Application_AuthenticateRequest(object sender, EventArgs e)
 {
     ExceptionsLogging.Info("Application has Authenticate Request, " + sender.GetType().Name);
 }
Example #4
0
 public void DoSomeMathSetup()
 {
     exceptionLogging = new ExceptionsLogging();
 }