C# 클래스 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.
상속: IHttpModule
파일 보기 프로젝트 열기: JonHaywood/DotNetNuke.Extensions

공개 메소드들

메소드 설명
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.

메소드 상세

Dispose() 공개 메소드

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

Init() 공개 메소드

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.
리턴 void

OnInit() 공개 메소드

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.
리턴 void

OnStart() 공개 메소드

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.
리턴 void