C# Class SenseNet.ContentRepository.Storage.Caching.CacheBase

Inheritance: ICache
Show file Open project: maxpavlov/FlexNet

Protected Properties

Property Type Description
_currentContext System.Web.HttpContext

Public Methods

Method Description
Get ( string key ) : object
GetEnumerator ( ) : IEnumerator
Insert ( string key, object value ) : void
Insert ( string key, object value, System.Web.Caching.CacheDependency dependencies ) : 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
this ( string key ) : object

Method Details

Get() public abstract method

public abstract Get ( string key ) : object
key string
return object

GetEnumerator() public abstract method

public abstract GetEnumerator ( ) : IEnumerator
return IEnumerator

Insert() public abstract method

public abstract Insert ( string key, object value ) : void
key string
value object
return void

Insert() public method

public Insert ( string key, object value, System.Web.Caching.CacheDependency dependencies ) : void
key string
value object
dependencies System.Web.Caching.CacheDependency
return void

Insert() public abstract method

public abstract 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
return void

Remove() public abstract method

public abstract Remove ( string key ) : void
key string
return void

Reset() public abstract method

public abstract Reset ( ) : void
return void

this() public abstract method

public abstract this ( string key ) : object
key string
return object

Property Details

_currentContext protected property

protected HttpContext,System.Web _currentContext
return System.Web.HttpContext