Method | Description | |
---|---|---|
Add ( string key, object value, System.TimeSpan expirationTime ) : void |
|
|
CachingProviderBase ( bool isenable ) : System | ||
Clear ( ) : void |
Remove all cache items added by the cache store itself. Nothing will be done if not enabled. |
|
Get ( string key ) : object |
Method | Description | |
---|---|---|
AddCore ( string key, object value, System.TimeSpan expirationTime ) : void |
|
|
ClearCore ( ) : void |
Remove all cache items added by the cache store itself.
|
|
GetCore ( string key ) : object |
|
public Add ( string key, object value, System.TimeSpan expirationTime ) : void | ||
key | string | |
value | object | |
expirationTime | System.TimeSpan | |
return | void |
protected abstract AddCore ( string key, object value, System.TimeSpan expirationTime ) : void | ||
key | string | |
value | object | |
expirationTime | System.TimeSpan | |
return | void |
public CachingProviderBase ( bool isenable ) : System | ||
isenable | bool | |
return | System |
protected abstract GetCore ( string key ) : object | ||
key | string | |
return | object |