CMSCacheItemRemovedCallback Delegate |
Defines a callback method for notifying applications when a cached item is removed from the cache.
Namespace: CMS.HelpersAssembly: CMS.Helpers (in CMS.Helpers.dll) Version: 12.0.0
Syntax public delegate void CMSCacheItemRemovedCallback(
string key,
Object value,
CMSCacheItemRemovedReason reason
)
Parameters
- key
- Type: SystemString
The key that is removed from the cache. - value
- Type: SystemObject
The item associated with the key removed from the cache. - reason
- Type: CMS.HelpersCMSCacheItemRemovedReason
The reason the item was removed from the cache.
See Also