C# Класс OpenSlx.Lib.Services.Impl.MemCacheService

Very simple cache service using a dictionary to implement the cache. (for testing purposes)
Наследование: ICacheService
Показать файл Открыть проект

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

Метод Описание
Insert ( string key, object value, System cacheDependency, System.DateTime absoluteExpiration, System.TimeSpan slidingExpiration ) : void

We provide a partial implementation - cache dependency and expiration are not honored.

this ( string index ) : object

Retrieve cache item

Описание методов

Insert() публичный Метод

We provide a partial implementation - cache dependency and expiration are not honored.
public Insert ( string key, object value, System cacheDependency, System.DateTime absoluteExpiration, System.TimeSpan slidingExpiration ) : void
key string
value object
cacheDependency System
absoluteExpiration System.DateTime
slidingExpiration System.TimeSpan
Результат void

this() публичный Метод

Retrieve cache item
public this ( string index ) : object
index string
Результат object