C# Class WebBase.MvcApplication

Inheritance: System.Web.HttpApplication
Show file Open project: sztupy/shaml

Public Methods

Method Description
Init ( ) : void

Protected Methods

Method Description
Application_BeginRequest ( object sender, EventArgs e ) : void

Due to issues on IIS7, the NHibernate initialization cannot reside in Init() but must only be called once. Consequently, we invoke a thread-safe singleton class to ensure it's only initialized once.

Application_Error ( object sender, EventArgs e ) : void
Application_Start ( ) : void

Private Methods

Method Description
InitializeNHibernateSession ( ) : void

If you need to communicate to multiple databases, you'd add a line to this method to initialize the other database as well.

Method Details

Application_BeginRequest() protected method

Due to issues on IIS7, the NHibernate initialization cannot reside in Init() but must only be called once. Consequently, we invoke a thread-safe singleton class to ensure it's only initialized once.
protected Application_BeginRequest ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void

Application_Error() protected method

protected Application_Error ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void

Application_Start() protected method

protected Application_Start ( ) : void
return void

Init() public method

public Init ( ) : void
return void