C# 클래스 newtelligence.DasBlog.Web.Core.DataCache

파일 보기 프로젝트 열기: AArnott/dasblog 1 사용 예제들

공개 메소드들

메소드 설명
Clear ( ) : void

Clears the cache.

Insert ( string key, object value, System.Web.Caching.CacheDependency dependency ) : void

Inserts an object in the Cache, overrides an existing object with the same key.

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

Inserts an object in the Cache, overrides an existing object with the same key.

Insert ( string key, object value, System.DateTime absoluteExpiration ) : void

Inserts an object in the Cache, overrides an existing object with the same key.

Insert ( string key, object value, System.TimeSpan slidingExpiration ) : void

Inserts an object in the Cache, overrides an existing object with the same key.

Remove ( string key ) : object

Inserts an object in the Cache, overrides an existing object with the same key.

this ( string key ) : object

Gets the object specified by the key from the cache.

메소드 상세

Clear() 공개 추상적인 메소드

Clears the cache.
public abstract Clear ( ) : void
리턴 void

Insert() 공개 추상적인 메소드

Inserts an object in the Cache, overrides an existing object with the same key.
public abstract Insert ( string key, object value, System.Web.Caching.CacheDependency dependency ) : void
key string
value object
dependency System.Web.Caching.CacheDependency
리턴 void

Insert() 공개 추상적인 메소드

Inserts an object in the Cache, overrides an existing object with the same key.
public abstract Insert ( string key, object value, CacheItemPriority priority ) : void
key string
value object
priority CacheItemPriority
리턴 void

Insert() 공개 추상적인 메소드

Inserts an object in the Cache, overrides an existing object with the same key.
public abstract Insert ( string key, object value, System.DateTime absoluteExpiration ) : void
key string
value object
absoluteExpiration System.DateTime
리턴 void

Insert() 공개 추상적인 메소드

Inserts an object in the Cache, overrides an existing object with the same key.
public abstract Insert ( string key, object value, System.TimeSpan slidingExpiration ) : void
key string
value object
slidingExpiration System.TimeSpan
리턴 void

Remove() 공개 추상적인 메소드

Inserts an object in the Cache, overrides an existing object with the same key.
public abstract Remove ( string key ) : object
key string
리턴 object

this() 공개 추상적인 메소드

Gets the object specified by the key from the cache.
public abstract this ( string key ) : object
key string
리턴 object