Table of Contents

Enum CacheItemRemovedReason

Namespace
Dynamicweb.Caching
Assembly
Dynamicweb.Core.dll

CacheItemRemovedReason enum. Specifies the reason why a cache item was removed from the cache.

public enum CacheItemRemovedReason

Fields

CacheSpecificEviction = 0

The cache item was evicted because of the specific cache implementation.

DependencyChanged = 1

The cache item was evicted because one or more of its dependencies changed.

Evicted = 2

The cache item was evicted to free memory in the cache.

Expired = 3

The cache item expired.

Removed = 4

The cache item was manually removed or updated.

To top