C# Class Codeology.SharpCache.Providers.HttpRuntimeCacheProvider

Inheritance: CacheProvider
Show file Open project: lkinsella/SharpCache

Public Methods

Method Description
Clear ( ) : void
Exists ( string key ) : bool
Get ( string key ) : object
HttpRuntimeCacheProvider ( ) : System
Set ( string key, object value, System.DateTime dt ) : void
Unset ( string key ) : void

Protected Methods

Method Description
GetId ( ) : System.Guid
GetName ( ) : string

Method Details

Clear() public method

public Clear ( ) : void
return void

Exists() public method

public Exists ( string key ) : bool
key string
return bool

Get() public method

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

GetId() protected method

protected GetId ( ) : System.Guid
return System.Guid

GetName() protected method

protected GetName ( ) : string
return string

HttpRuntimeCacheProvider() public method

public HttpRuntimeCacheProvider ( ) : System
return System

Set() public method

public Set ( string key, object value, System.DateTime dt ) : void
key string
value object
dt System.DateTime
return void

Unset() public method

public Unset ( string key ) : void
key string
return void