3 writes to CachedResponse
Microsoft.AspNetCore.OutputCaching (3)
OutputCacheContext.cs (1)
78CachedResponse = null;
OutputCacheMiddleware.cs (2)
268context.CachedResponse = cacheEntry; 406context.CachedResponse = cacheEntry;
10 references to CachedResponse
Microsoft.AspNetCore.OutputCaching (10)
OutputCacheContext.cs (1)
77var tmp = CachedResponse;
OutputCacheMiddleware.cs (9)
199return context.CachedResponse; 270var cacheEntryAge = context.ResponseTime.Value - context.CachedResponse.Created; 280var cachedResponse = context.CachedResponse; 311var body = context.CachedResponse.Body; 317await context.CachedResponse.CopyToAsync(response.BodyWriter, context.HttpContext.RequestAborted); 420&& context.CachedResponse is not null) 433context.CachedResponse.SetBody(cachedResponseBody, recycleBuffers: true); 443await OutputCacheEntryFormatter.StoreAsync(context.CacheKey, context.CachedResponse, context.Tags, context.CachedResponseValidFor, 519var cachedResponse = context.CachedResponse;