Microsoft.Extensions.Caching.Memory.PostEvictionCallbackRegistration
Represents a callback delegate that will be fired after an entry is evicted from the cache.
namespace Microsoft.Extensions.Caching.Memory
{
public class PostEvictionCallbackRegistration
{
public PostEvictionDelegate EvictionCallback { get; set; }
public object State { get; set; }
public PostEvictionCallbackRegistration();
}
}