C# Class Phun.Templating.PhunCache

The phun cache.
Inheritance: ICache
Afficher le fichier Open project: noogen/phuncms Class Usage Examples

Méthodes publiques

Méthode 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 méthode

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

get() public méthode

Gets the specified key.
public get ( string key ) : object
key string The key.
Résultat object

set() public méthode

Sets the specified key.
public set ( string key, object value ) : object
key string The key.
value object The value.
Résultat object