1 instantiation of SqlServerCacheOptions
Microsoft.Extensions.Caching.Hybrid.Tests (1)
ServiceConstructionTests.cs (1)
247(sp, key) => new SqlServerCache(new SqlServerCacheOptions
8 references to SqlServerCacheOptions
Microsoft.Extensions.Caching.SqlServer (8)
SqlServerCache.cs (3)
36public SqlServerCache(IOptions<SqlServerCacheOptions> options) 38var cacheOptions = options.Value; 48$"{nameof(SqlServerCacheOptions.ExpiredItemsDeletionInterval)} cannot be less than the minimum " +
SqlServerCacheOptions.cs (3)
13public class SqlServerCacheOptions : IOptions<SqlServerCacheOptions> 51SqlServerCacheOptions IOptions<SqlServerCacheOptions>.Value
SqlServerCachingServicesExtensions.cs (2)
20/// <param name="setupAction">An <see cref="Action{SqlServerCacheOptions}"/> to configure the provided <see cref="SqlServerCacheOptions"/>.</param> 22public static IServiceCollection AddDistributedSqlServerCache(this IServiceCollection services, Action<SqlServerCacheOptions> setupAction)