C# Класс Phun.Templating.PhunCache

The phun cache.
Наследование: ICache
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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