Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions
Provides the cache options for an entry in IDistributedCache.
namespace Microsoft.Extensions.Caching.Distributed
{
public class DistributedCacheEntryOptions
{
public DateTimeOffset? AbsoluteExpiration { get; set; }
public TimeSpan? AbsoluteExpirationRelativeToNow { get; set; }
public TimeSpan? SlidingExpiration { get; set; }
public DistributedCacheEntryOptions();
}
}