CacheItemRemovedReason Enumeration
.NET Framework 2.0
Specifies the reason an item was removed from the Cache.
Namespace: System.Web.Caching
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
| Member name | Description | |
|---|---|---|
| DependencyChanged | The item is removed from the cache because the cache dependency associated with it changed. | |
| Expired | The item is removed from the cache because it expired. | |
| Removed | The item is removed from the cache by a Remove method call or by an Insert method call that specified the same key. | |
| Underused | The item is removed from the cache because the system removed it to free memory. |
This enumeration is used by the CacheItemRemovedCallback delegate to notify your ASP.NET applications when and why an object was removed from the Cache.
| Topic | Location |
|---|---|
| How to: Notify an Application When an Item Is Removed from the Cache | Building ASP .NET Web Applications |
| How to: Notify an Application When an Item Is Removed from the Cache | Building ASP .NET Web Applications |
The following code example demonstrates a shared Boolean property, itemRemoved, a shared CacheItemRemovedReason enumeration object, reason, and a CacheItemRemovedCallback delegate, onRemove. The latter can be included in an Insert or Add method call. It also defines a method, RemovedCallback, with a signature that matches the CacheItemRemovedCallback delegate. When the RemovedCallback method is called, it changes the itemRemoved property value to true and assigns the reason property value to the reason provided by the CacheItemRemovedReason enumeration.
Community Additions
ADD
Show: