C# 클래스 Flatwhite.Provider.DefaultCacheStoreProvider

The default implementation of ICacheStoreProvider using private dictionaries
상속: ICacheStoreProvider, IDisposable
파일 보기 프로젝트 열기: vanthoainguyen/Flatwhite 1 사용 예제들

공개 메소드들

메소드 설명
DefaultCacheStoreProvider ( ) : System

Initializes a DefaultCacheStoreProvider with default ICacheStore and IAsyncCacheStore

Dispose ( ) : void

Clear all the dictionary

GetAsyncCacheStore ( Type asyncCacheStoreType ) : IAsyncCacheStore

Get the IAsyncCacheStore

GetAsyncCacheStore ( int storeId ) : IAsyncCacheStore

Get the IAsyncCacheStore by storeId, if couldn't find it it will try to get the ICacheStore with the same id

GetCacheStore ( Type cacheStoreType ) : ICacheStore

Get the ICacheStore

GetCacheStore ( int storeId ) : ICacheStore

Get the ICacheStore

RegisterAsyncStore ( IAsyncCacheStore store ) : void

Register the IAsyncCacheStore

RegisterStore ( ICacheStore store ) : void

Register the ICacheStore

메소드 상세

DefaultCacheStoreProvider() 공개 메소드

Initializes a DefaultCacheStoreProvider with default ICacheStore and IAsyncCacheStore
public DefaultCacheStoreProvider ( ) : System
리턴 System

Dispose() 공개 메소드

Clear all the dictionary
public Dispose ( ) : void
리턴 void

GetAsyncCacheStore() 공개 메소드

Get the IAsyncCacheStore
public GetAsyncCacheStore ( Type asyncCacheStoreType ) : IAsyncCacheStore
asyncCacheStoreType System.Type
리턴 IAsyncCacheStore

GetAsyncCacheStore() 공개 메소드

Get the IAsyncCacheStore by storeId, if couldn't find it it will try to get the ICacheStore with the same id
public GetAsyncCacheStore ( int storeId ) : IAsyncCacheStore
storeId int
리턴 IAsyncCacheStore

GetCacheStore() 공개 메소드

Get the ICacheStore
public GetCacheStore ( Type cacheStoreType ) : ICacheStore
cacheStoreType System.Type
리턴 ICacheStore

GetCacheStore() 공개 메소드

Get the ICacheStore
public GetCacheStore ( int storeId ) : ICacheStore
storeId int
리턴 ICacheStore

RegisterAsyncStore() 공개 메소드

Register the IAsyncCacheStore
public RegisterAsyncStore ( IAsyncCacheStore store ) : void
store IAsyncCacheStore
리턴 void

RegisterStore() 공개 메소드

Register the ICacheStore
public RegisterStore ( ICacheStore store ) : void
store ICacheStore
리턴 void