C# Class Rock.Web.HttpModule

Provides application start, and module initialization and disposal events to the implementing class.
Inheritance: IHttpModule
Mostra file Open project: NewSpring/Rock

Public Methods

Method Description
Application_Start ( System.Web.HttpApplication context ) : void

Method that will be called once on application start.

Dispose ( ) : void

Disposes of the resources (other than memory) used by the module that implements T:System.Web.IHttpModule.

Init ( System.Web.HttpApplication context ) : void

Initializes a module and prepares it to handle requests.

Method Details

Application_Start() public method

Method that will be called once on application start.
public Application_Start ( System.Web.HttpApplication context ) : void
context System.Web.HttpApplication The context.
return void

Dispose() public method

Disposes of the resources (other than memory) used by the module that implements T:System.Web.IHttpModule.
public Dispose ( ) : void
return void

Init() public method

Initializes a module and prepares it to handle requests.
public Init ( System.Web.HttpApplication context ) : void
context System.Web.HttpApplication An that provides access to the methods, properties, and events common to all application objects within an ASP.NET application
return void