Method | Description | |
---|---|---|
GetCacheItem ( string key ) : object |
get specified cache item based on key provided
|
|
RemoveCacheItem ( string key ) : void |
remove specified cache item
|
|
SetCacheItem ( string key, object data, int expireInSeconds ) : void |
Insert an item into cache
|
Method | Description | |
---|---|---|
Cache ( ) : System | ||
ExpireCheck ( ) : void |
public static GetCacheItem ( string key ) : object | ||
key | string | |
return | object |
public static RemoveCacheItem ( string key ) : void | ||
key | string | |
return | void |
public static SetCacheItem ( string key, object data, int expireInSeconds ) : void | ||
key | string | |
data | object | |
expireInSeconds | int | |
return | void |