C# Класс Netsy.Test.NullDataCache

A data cache that does not cache anything. For test.
Наследование: IDataCache
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
Read ( string key ) : object

Read from the cache

Write ( string key, object data ) : void

Write to the cache

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

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

Read from the cache
public Read ( string key ) : object
key string the cache key
Результат object

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

Write to the cache
public Write ( string key, object data ) : void
key string the cache key
data object the value to write
Результат void