11 references to RedisOutputCacheOptions
Aspire.StackExchange.Redis.OutputCaching (4)
AspireRedisOutputCacheExtensions.cs (4)
33
builder.AddRedisOutputCacheCore((
RedisOutputCacheOptions
options, IServiceProvider sp) =>
56
builder.AddRedisOutputCacheCore((
RedisOutputCacheOptions
options, IServiceProvider sp) =>
62
private static void AddRedisOutputCacheCore(this IHostApplicationBuilder builder, Action<
RedisOutputCacheOptions
, IServiceProvider> configureRedisOptions)
66
builder.Services.AddOptions<
RedisOutputCacheOptions
>() // note that RedisOutputCacheOptions doesn't support named options
Microsoft.AspNetCore.OutputCaching.StackExchangeRedis (7)
RedisOutputCacheStore.cs (3)
24
private readonly
RedisOutputCacheOptions
_options;
52
public RedisOutputCacheStore(IOptions<
RedisOutputCacheOptions
> optionsAccessor) // TODO: OC-specific options?
70
internal RedisOutputCacheStore(IOptions<
RedisOutputCacheOptions
> optionsAccessor, ILogger logger)
RedisOutputCacheStoreImpl.cs (2)
11
public RedisOutputCacheStoreImpl(IOptions<
RedisOutputCacheOptions
> optionsAccessor, ILogger<RedisOutputCacheStore> logger)
16
public RedisOutputCacheStoreImpl(IOptions<
RedisOutputCacheOptions
> optionsAccessor)
StackExchangeRedisCacheServiceCollectionExtensions.cs (2)
21
/// <see cref="
RedisOutputCacheOptions
"/>.</param>
23
public static IServiceCollection AddStackExchangeRedisOutputCache(this IServiceCollection services, Action<
RedisOutputCacheOptions
> setupAction)