C# Class Elmah.ErrorFilterModule

HTTP module implementation that logs unhandled exceptions in an ASP.NET Web application to an error log.
Inheritance: IHttpModule
Mostra file Open project: elmah/Elmah

Public Methods

Method Description
Dispose ( ) : void

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

Init ( System.Web.HttpApplication application ) : void

Initializes the module and prepares it to handle requests.

Protected Methods

Method Description
OnErrorModuleFiltering ( object sender, ExceptionFilterEventArgs args ) : void

Method Details

Dispose() public method

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

Init() public method

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

OnErrorModuleFiltering() protected method

protected OnErrorModuleFiltering ( object sender, ExceptionFilterEventArgs args ) : void
sender object
args ExceptionFilterEventArgs
return void