Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryExtensions
Provides extension methods for DistributedCacheEntryOptions operations.
public static DistributedCacheEntryOptions SetAbsoluteExpiration(this DistributedCacheEntryOptions options, TimeSpan relative)
Sets an absolute expiration time, relative to now.
public static DistributedCacheEntryOptions SetAbsoluteExpiration(this DistributedCacheEntryOptions options, DateTimeOffset absolute)
Sets an absolute expiration date for the cache entry.
public static DistributedCacheEntryOptions SetSlidingExpiration(this DistributedCacheEntryOptions options, TimeSpan offset)
Sets how long the cache entry can be inactive (for example, not accessed) before it will be removed.
This will not extend the entry lifetime beyond the absolute expiration (if set).