C# 클래스 Castle.ActiveRecord.SessionScopeWebModule

HttpModule to set up a session for the request lifetime. SessionScope
To install the module, you must:

Add the module to the httpModules configuration section within system.web

상속: IHttpModule
파일 보기 프로젝트 열기: shosca/ActiveRecord

보호된 프로퍼티들

프로퍼티 타입 설명
SessionKey String

공개 메소드들

메소드 설명
Dispose ( ) : void

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

Init ( System.Web.HttpApplication app ) : void

Initialize the module.

비공개 메소드들

메소드 설명
OnBeginRequest ( object sender, EventArgs e ) : void

Called when request is started, create a session for the request

OnEndRequest ( object sender, EventArgs e ) : void

Called when the request ends, dipose of the scope

메소드 상세

Dispose() 공개 메소드

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

Init() 공개 메소드

Initialize the module.
public Init ( System.Web.HttpApplication app ) : void
app System.Web.HttpApplication The app.
리턴 void

프로퍼티 상세

SessionKey 보호되어 있는 정적으로 프로퍼티

The key used to store the session in the context items
protected static String SessionKey
리턴 String