C# Class Netsy.Test.NullDataCache

A data cache that does not cache anything. For test.
Inheritance: IDataCache
Mostrar archivo Open project: AnthonySteele/Netsy Class Usage Examples

Public Methods

Method Description
Read ( string key ) : object

Read from the cache

Write ( string key, object data ) : void

Write to the cache

Method Details

Read() public method

Read from the cache
public Read ( string key ) : object
key string the cache key
return object

Write() public method

Write to the cache
public Write ( string key, object data ) : void
key string the cache key
data object the value to write
return void