C# 클래스 Phun.Templating.PhunCache

The phun cache.
상속: ICache
파일 보기 프로젝트 열기: noogen/phuncms 1 사용 예제들

공개 메소드들

메소드 설명
PhunCache ( System.Web.HttpContextBase context ) : System.Web

Initializes a new instance of the PhunCache class.

get ( string key ) : object

Gets the specified key.

set ( string key, object value ) : object

Sets the specified key.

메소드 상세

PhunCache() 공개 메소드

Initializes a new instance of the PhunCache class.
public PhunCache ( System.Web.HttpContextBase context ) : System.Web
context System.Web.HttpContextBase The context.
리턴 System.Web

get() 공개 메소드

Gets the specified key.
public get ( string key ) : object
key string The key.
리턴 object

set() 공개 메소드

Sets the specified key.
public set ( string key, object value ) : object
key string The key.
value object The value.
리턴 object