C# Class Elmah.HttpModuleBase

Provides an abstract base class for IHttpModule that supports discovery from within partial trust environments.
Inheritance: IHttpModule
Mostra file Open project: elmah/Elmah

Protected Methods

Method Description
OnDispose ( ) : void

Disposes of the resources (other than memory) used by the module.

OnInit ( System.Web.HttpApplication application ) : void

Initializes the module and prepares it to handle requests.

Private Methods

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

Method Details

OnDispose() protected method

Disposes of the resources (other than memory) used by the module.
protected OnDispose ( ) : void
return void

OnInit() protected method

Initializes the module and prepares it to handle requests.
protected OnInit ( System.Web.HttpApplication application ) : void
application System.Web.HttpApplication
return void