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