1 instantiation of SqlServerCacheOptions
Microsoft.Extensions.Caching.SqlServer.Tests (1)
SqlServerCacheWithDatabaseTest.cs (1)
699return new SqlServerCacheOptions()
16 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> 46SqlServerCacheOptions 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)
Microsoft.Extensions.Caching.SqlServer.Tests (8)
SqlServerCacheWithDatabaseTest.cs (4)
127var cacheOptions = GetCacheOptions(testClock); 167var cacheOptions = GetCacheOptions(testClock); 687private IDistributedCache GetSqlServerCache(SqlServerCacheOptions options = null) 697private SqlServerCacheOptions GetCacheOptions(ISystemClock testClock = null)
TestOptions.cs (4)
8internal class TestSqlServerCacheOptions : IOptions<SqlServerCacheOptions> 10private readonly SqlServerCacheOptions _innerOptions; 12public TestSqlServerCacheOptions(SqlServerCacheOptions innerOptions) 17public SqlServerCacheOptions Value