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