C# 클래스 Cedar.Core.ApplicationContexts.HttpSessionStateContextLocator

상속: ContextLocator
파일 보기 프로젝트 열기: Chinaccn/surfboard

Private Properties

프로퍼티 타입 설명

공개 메소드들

메소드 설명
Clear ( ) : void

Clear the current context item collection.

ContextItemExits ( string key ) : bool

Check if the context item of the given key exists.

GetContextItem ( string key ) : ContextItem

Get an existing context item by given key.

GetCurrentContext ( ) : ContextItemCollection

Get all current context item collection.

HttpSessionStateContextLocator ( ) : System.Collections.Generic

Initializes a new instance of the T:Cedar.Core.ApplicationContexts.HttpSessionStateContextLocator class.

보호된 메소드들

메소드 설명
SetContextItemCore ( ContextItem contextItem ) : void

Add a new context item or use the new context item to override the exiting one.

메소드 상세

Clear() 공개 메소드

Clear the current context item collection.
public Clear ( ) : void
리턴 void

ContextItemExits() 공개 메소드

Check if the context item of the given key exists.
public ContextItemExits ( string key ) : bool
key string The key of the .
리턴 bool

GetContextItem() 공개 메소드

Get an existing context item by given key.
public GetContextItem ( string key ) : ContextItem
key string The key of the to get.
리턴 ContextItem

GetCurrentContext() 공개 메소드

Get all current context item collection.
public GetCurrentContext ( ) : ContextItemCollection
리턴 ContextItemCollection

HttpSessionStateContextLocator() 공개 메소드

Initializes a new instance of the T:Cedar.Core.ApplicationContexts.HttpSessionStateContextLocator class.
public HttpSessionStateContextLocator ( ) : System.Collections.Generic
리턴 System.Collections.Generic

SetContextItemCore() 보호된 메소드

Add a new context item or use the new context item to override the exiting one.
protected SetContextItemCore ( ContextItem contextItem ) : void
contextItem ContextItem The new to set.
리턴 void