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)
36
public SqlServerCache(IOptions<
SqlServerCacheOptions
> options)
38
var
cacheOptions = options.Value;
48
$"{nameof(
SqlServerCacheOptions
.ExpiredItemsDeletionInterval)} cannot be less than the minimum " +
SqlServerCacheOptions.cs (3)
13
public class SqlServerCacheOptions : IOptions<
SqlServerCacheOptions
>
51
SqlServerCacheOptions
IOptions<
SqlServerCacheOptions
>.Value
SqlServerCachingServicesExtensions.cs (2)
20
/// <param name="setupAction">An <see cref="Action{SqlServerCacheOptions}"/> to configure the provided <see cref="
SqlServerCacheOptions
"/>.</param>
22
public static IServiceCollection AddDistributedSqlServerCache(this IServiceCollection services, Action<
SqlServerCacheOptions
> setupAction)