C# Class Phun.Templating.PhunCache

The phun cache.
Inheritance: ICache
Datei anzeigen Open project: noogen/phuncms Class Usage Examples

Public Methods

Method Description
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.

Method Details

PhunCache() public method

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

get() public method

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

set() public method

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