C# 클래스 Netsy.Cache.DataCache

The data cache
상속: IDataCache
파일 보기 프로젝트 열기: AnthonySteele/Netsy

공개 메소드들

메소드 설명
Read ( string key ) : object

Read a value from the cache

Write ( string key, object data ) : void

Write a value to the cache

비공개 메소드들

메소드 설명
ClearTimedOutItems ( ) : void
ItemHasTimedOut ( CacheItem item ) : bool

Return true if the item has expired, is past the timeout

메소드 상세

Read() 공개 메소드

Read a value from the cache
public Read ( string key ) : object
key string the cache key
리턴 object

Write() 공개 메소드

Write a value to the cache
public Write ( string key, object data ) : void
key string the cache key
data object the value cached
리턴 void