Enum CacheItemRemovedReason
Specifies the reason an item was removed from the ICache.
Namespace:
Assembly: Alachisoft.NCache.Client.dll
Syntax
[Serializable]
public enum CacheItemRemovedReason
Remarks
This enumeration works in concert with the Alachisoft.NCache.Client.CacheItemRemovedCallback delegate to notify your applications when and why an object was removed from the Alachisoft.NCache.Client.Cache.
Fields
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 Alachisoft.NCache.Client.Cache.Remove(System.String,Alachisoft.NCache.Client.LockHandle,Alachisoft.NCache.Client.CacheItemVersion,Alachisoft.NCache.Runtime.Caching.WriteThruOptions) method call or by an
|
Underused | The item is removed from the cache because the system removed it to free memory. |