Microsoft.Extensions.Caching.Memory.IMemoryCache
Represents a local in-memory cache whose values are not serialized.
namespace Microsoft.Extensions.Caching.Memory
{
public interface IMemoryCache : IDisposable
{
bool TryGetValue(object key, out object value);
ICacheEntry CreateEntry(object key);
void Remove(object key);
}
}