C# Class DotNetNuke.Extensions.HttpModules.ApplicationStartModuleBase

This class enables code to be executed during application start without going into Global.ascx. Over the OnStart method to do so.
Inheritance: IHttpModule
显示文件 Open project: JonHaywood/DotNetNuke.Extensions

Public Methods

Method Description
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 the specified module.

OnInit ( System.Web.HttpApplication context ) : void

Initializes any data/resources on HTTP module start.

OnStart ( System.Web.HttpApplication context ) : void

Initializes any data/resources on application start.

Method Details

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 the specified module.
public Init ( System.Web.HttpApplication context ) : void
context System.Web.HttpApplication The application context that instantiated and will be running this module.
return void

OnInit() public method

Initializes any data/resources on HTTP module start.
public OnInit ( System.Web.HttpApplication context ) : void
context System.Web.HttpApplication The application context that instantiated and will be running this module.
return void

OnStart() public method

Initializes any data/resources on application start.
public OnStart ( System.Web.HttpApplication context ) : void
context System.Web.HttpApplication The application context that instantiated and will be running this module.
return void