<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="11.0.0-preview.3.26207.106" />

Microsoft.Extensions.Caching.Memory.MemoryCacheEntryExtensions

public static class MemoryCacheEntryExtensions
Provide extensions methods for MemoryCacheEntryOptions operations.
namespace Microsoft.Extensions.Caching.Memory { public static class MemoryCacheEntryExtensions { public static MemoryCacheEntryOptions SetPriority(this MemoryCacheEntryOptions options, CacheItemPriority priority); public static MemoryCacheEntryOptions SetSize(this MemoryCacheEntryOptions options, long size); public static MemoryCacheEntryOptions AddExpirationToken(this MemoryCacheEntryOptions options, IChangeToken expirationToken); public static MemoryCacheEntryOptions SetAbsoluteExpiration(this MemoryCacheEntryOptions options, TimeSpan relative); public static MemoryCacheEntryOptions SetAbsoluteExpiration(this MemoryCacheEntryOptions options, DateTimeOffset absolute); public static MemoryCacheEntryOptions SetSlidingExpiration(this MemoryCacheEntryOptions options, TimeSpan offset); public static MemoryCacheEntryOptions RegisterPostEvictionCallback(this MemoryCacheEntryOptions options, PostEvictionDelegate callback); public static MemoryCacheEntryOptions RegisterPostEvictionCallback(this MemoryCacheEntryOptions options, PostEvictionDelegate callback, object state); } }