CacheItemUpdateReason Enum

Definition

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
CacheItemUpdateReason

Fields

DependencyChanged 2

Specifies that the item is being removed from the cache because the associated CacheDependency object changed.

Expired 1

Specifies that the item is being removed from the cache because the absolute or sliding expiration interval expired.

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