Enum CacheItemRemovedReason
Specifies the reason an item was removed from the Cache.
Namespace:
Assembly: Alachisoft.NCache.Web.dll
Syntax
[Serializable]
public enum CacheItemRemovedReason
Remarks
This enumeration works in concert with the CacheItemRemovedCallback delegate to notify your applications when and why an object was removed from the Cache.
Name | Description |
---|---|
DependencyChanged | The item is removed from the cache because a file or key dependency changed. |
Expired | The item is removed from the cache because it expired. |
Removed | The item is removed from the cache by a Remove(String) method call or by an Insert(String, Object) method call that specified the same key. |
Underused | The item is removed from the cache because the system removed it to free memory. |