CacheItemUpdateReason Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies the reason that a cached item is being removed from the Cache object.
public enum class CacheItemUpdateReason
public enum CacheItemUpdateReason
type CacheItemUpdateReason =
Public Enum CacheItemUpdateReason
- Inheritance
Fields
Name | Value | Description |
---|---|---|
Expired | 1 | Specifies that the item is being removed from the cache because the absolute or sliding expiration interval expired. |
DependencyChanged | 2 | Specifies that the item is being removed from the cache because the associated CacheDependency object changed. |
Remarks
Unlike the CacheItemRemovedReason enumeration, this enumeration does not include the Removed
or Underused
values. Updateable cache items are not removable and can thus never be automatically removed by ASP.NET even if there is a need to free memory.
Applies to
.NET