C# 클래스 Flatwhite.CacheStoreAdaptor

상속: ICacheStore, IAsyncCacheStore
파일 보기 프로젝트 열기: vanthoainguyen/Flatwhite

공개 메소드들

메소드 설명
CacheStoreAdaptor ( ICacheStore syncCacheStore ) : System
Contains ( string key ) : bool
ContainsAsync ( string key ) : Task
Get ( string key ) : object
GetAll ( ) : object>>.List
GetAllAsync ( ) : object>>>.Task
GetAsync ( string key ) : Task
Remove ( string key ) : object
RemoveAsync ( string key ) : Task
Set ( string key, object value, DateTimeOffset absoluteExpiration ) : void
SetAsync ( string key, object value, DateTimeOffset absoluteExpiration ) : System.Threading.Tasks.Task

메소드 상세

CacheStoreAdaptor() 공개 메소드

public CacheStoreAdaptor ( ICacheStore syncCacheStore ) : System
syncCacheStore ICacheStore
리턴 System

Contains() 공개 메소드

public Contains ( string key ) : bool
key string
리턴 bool

ContainsAsync() 공개 메소드

public ContainsAsync ( string key ) : Task
key string
리턴 Task

Get() 공개 메소드

public Get ( string key ) : object
key string
리턴 object

GetAll() 공개 메소드

public GetAll ( ) : object>>.List
리턴 object>>.List

GetAllAsync() 공개 메소드

public GetAllAsync ( ) : object>>>.Task
리턴 object>>>.Task

GetAsync() 공개 메소드

public GetAsync ( string key ) : Task
key string
리턴 Task

Remove() 공개 메소드

public Remove ( string key ) : object
key string
리턴 object

RemoveAsync() 공개 메소드

public RemoveAsync ( string key ) : Task
key string
리턴 Task

Set() 공개 메소드

public Set ( string key, object value, DateTimeOffset absoluteExpiration ) : void
key string
value object
absoluteExpiration DateTimeOffset
리턴 void

SetAsync() 공개 메소드

public SetAsync ( string key, object value, DateTimeOffset absoluteExpiration ) : System.Threading.Tasks.Task
key string
value object
absoluteExpiration DateTimeOffset
리턴 System.Threading.Tasks.Task