1 implementation of IOutputCacheFeature
Microsoft.AspNetCore.OutputCaching (1)
OutputCacheFeature.cs (1)
6internal sealed class OutputCacheFeature : IOutputCacheFeature
5 references to IOutputCacheFeature
Microsoft.AspNetCore.Mvc.Core (2)
Filters\OutputCacheFilter.cs (2)
39var outputCachingFeature = context.HttpContext.Features.Get<IOutputCacheFeature>();
Microsoft.AspNetCore.OutputCaching (3)
OutputCacheMiddleware.cs (3)
485if (context.HttpContext.Features.Get<IOutputCacheFeature>() != null) 490context.HttpContext.Features.Set<IOutputCacheFeature>(new OutputCacheFeature(context)); 506context.Features.Set<IOutputCacheFeature?>(null);