C# 클래스 MettleSystems.dashCommerce.Core.Caching.Providers.HttpRuntimeCache

Uses the HttpRuntime.Cache
상속: ICacheProvider
파일 보기 프로젝트 열기: dashcommerce/dashcommerce-3

공개 메소드들

메소드 설명
ClearCache ( ) : void

Clears the cache.

Get ( string itemKey ) : object

Gets the specified item key.

GetCount ( ) : int

Gets the amount of items in the cache.

GetEnumerator ( ) : System.Collections.IDictionaryEnumerator

Gets the enumerator.

Insert ( string key, object value, int cacheDurationInSeconds, CacheItemPriority priority ) : void

Inserts the specified key.

Remove ( string itemKey ) : void

Removes the specified item key.

this ( string key ) : object

Gets the System.Object with the specified key.

메소드 상세

ClearCache() 공개 메소드

Clears the cache.
public ClearCache ( ) : void
리턴 void

Get() 공개 메소드

Gets the specified item key.
public Get ( string itemKey ) : object
itemKey string The item key.
리턴 object

GetCount() 공개 메소드

Gets the amount of items in the cache.
public GetCount ( ) : int
리턴 int

GetEnumerator() 공개 메소드

Gets the enumerator.
public GetEnumerator ( ) : System.Collections.IDictionaryEnumerator
리턴 System.Collections.IDictionaryEnumerator

Insert() 공개 메소드

Inserts the specified key.
public Insert ( string key, object value, int cacheDurationInSeconds, CacheItemPriority priority ) : void
key string The key.
value object The value.
cacheDurationInSeconds int The cache duration in seconds.
priority CacheItemPriority The priority.
리턴 void

Remove() 공개 메소드

Removes the specified item key.
public Remove ( string itemKey ) : void
itemKey string The item key.
리턴 void

this() 공개 메소드

Gets the System.Object with the specified key.
public this ( string key ) : object
key string
리턴 object