Method | Description | |
---|---|---|
Clear ( ) : void |
Clear the Cache
|
|
Destroy ( ) : void |
Clean up.
|
|
Get ( object key ) : object |
Get the object from the Cache
|
|
Lock ( object key ) : void |
If this is a clustered cache, lock the item
|
|
NextTimestamp ( ) : long |
Generate a timestamp
|
|
Put ( object key, object value ) : void | ||
Remove ( object key ) : void |
Remove an item from the Cache.
|
|
SysCache ( ) : System | ||
SysCache ( string region ) : System | ||
SysCache ( string region, string>.IDictionary |
||
Unlock ( object key ) : void |
If this is a clustered cache, unlock the item
|
Method | Description | |
---|---|---|
Configure ( string>.IDictionary |
||
GenerateRootCacheKey ( ) : string | ||
GetCacheKey ( object key ) : string | ||
RemoveRootCacheKey ( ) : void | ||
RootCacheItemRemoved ( string key, object value, CacheItemRemovedReason reason ) : void | ||
StoreRootCacheKey ( ) : void |
public Lock ( object key ) : void | ||
key | object | The Key of the Item in the Cache to lock. |
return | void |
public Put ( object key, object value ) : void | ||
key | object | |
value | object | |
return | void |
public Remove ( object key ) : void | ||
key | object | The Key of the Item in the Cache to remove. |
return | void |
public SysCache ( string region, string>.IDictionary |
||
region | string | |
properties | string>.IDictionary | |
return | System |
public Unlock ( object key ) : void | ||
key | object | The Key of the Item in the Cache to unlock. |
return | void |