C# 클래스 SenseNet.ContentRepository.Storage.Caching.AspNetCache

Wrapper class around the good old ASP.NET cache main features: populator (create/load/whatever the cached item) Distributed environment wireup
상속: CacheBase
파일 보기 프로젝트 열기: maxpavlov/FlexNet

공개 메소드들

메소드 설명
AspNetCache ( ) : System
Get ( string key ) : object
GetEnumerator ( ) : IEnumerator
Insert ( string key, object value ) : void
Insert ( string key, object value, System.Web.Caching.CacheDependency dependencies, System.DateTime absoluteExpiration, System.TimeSpan slidingExpiration, CacheItemPriority priority, CacheItemRemovedCallback onRemoveCallback ) : void
Remove ( string key ) : void
Reset ( ) : void
WhatIsInTheCache ( ) : string
this ( string key ) : object

메소드 상세

AspNetCache() 공개 메소드

public AspNetCache ( ) : System
리턴 System

Get() 공개 메소드

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

GetEnumerator() 공개 메소드

public GetEnumerator ( ) : IEnumerator
리턴 IEnumerator

Insert() 공개 메소드

public Insert ( string key, object value ) : void
key string
value object
리턴 void

Insert() 공개 메소드

public Insert ( string key, object value, System.Web.Caching.CacheDependency dependencies, System.DateTime absoluteExpiration, System.TimeSpan slidingExpiration, CacheItemPriority priority, CacheItemRemovedCallback onRemoveCallback ) : void
key string
value object
dependencies System.Web.Caching.CacheDependency
absoluteExpiration System.DateTime
slidingExpiration System.TimeSpan
priority CacheItemPriority
onRemoveCallback CacheItemRemovedCallback
리턴 void

Remove() 공개 메소드

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

Reset() 공개 메소드

public Reset ( ) : void
리턴 void

WhatIsInTheCache() 공개 메소드

public WhatIsInTheCache ( ) : string
리턴 string

this() 공개 메소드

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