2using System.Threading.Tasks;
51 private readonly KeyType key;
52 private readonly ValueType value;
65 public KeyType
Key => this.key;
70 public ValueType
Value => this.value;
Event arguments for cache item removal events.
KeyType Key
Key of item that was removed.
ValueType Value
Value of item that was removed.
RemovedReason Reason
Reason for removing the item.
delegate Task CacheItemEventHandler< KeyType, ValueType >(object Sender, CacheItemEventArgs< KeyType, ValueType > e)
Delegate for cache item removal event handlers.
RemovedReason
Reason for removing the item.