3 writes to CachedResponse
Microsoft.AspNetCore.OutputCaching (3)
OutputCacheContext.cs (1)
78CachedResponse = null;
OutputCacheMiddleware.cs (2)
269context.CachedResponse = cacheEntry; 407context.CachedResponse = cacheEntry;
10 references to CachedResponse
Microsoft.AspNetCore.OutputCaching (10)
OutputCacheContext.cs (1)
77var tmp = CachedResponse;
OutputCacheMiddleware.cs (9)
200return context.CachedResponse; 271var cacheEntryAge = context.ResponseTime.Value - context.CachedResponse.Created; 281var cachedResponse = context.CachedResponse; 312var body = context.CachedResponse.Body; 318await context.CachedResponse.CopyToAsync(response.BodyWriter, context.HttpContext.RequestAborted); 423&& context.CachedResponse is not null 437context.CachedResponse.SetBody(cachedResponseBody, recycleBuffers: true); 447await OutputCacheEntryFormatter.StoreAsync(context.CacheKey, context.CachedResponse, context.Tags, context.CachedResponseValidFor, 527var cachedResponse = context.CachedResponse;