1 write to CachedResponseHeaders
Microsoft.AspNetCore.ResponseCaching (1)
ResponseCachingMiddleware.cs (1)
144context.CachedResponseHeaders = cachedResponse.Headers;
5 references to CachedResponseHeaders
Microsoft.AspNetCore.ResponseCaching (5)
ResponseCachingMiddleware.cs (3)
157if (context.CachedResponseHeaders != null) 161if (context.CachedResponseHeaders.TryGetValue(key, out var values)) 430var cachedResponseHeaders = context.CachedResponseHeaders;
ResponseCachingPolicyProvider.cs (2)
169var cachedCacheControlHeaders = context.CachedResponseHeaders.CacheControl; 234if (HeaderUtilities.TryParseDate(context.CachedResponseHeaders.Expires.ToString(), out expires) &&