3 writes to CachedResponse
Microsoft.AspNetCore.OutputCaching (3)
OutputCacheContext.cs (1)
78
CachedResponse
= null;
OutputCacheMiddleware.cs (2)
260
context.
CachedResponse
= cacheEntry;
405
context.
CachedResponse
= cacheEntry;
10 references to CachedResponse
Microsoft.AspNetCore.OutputCaching (10)
OutputCacheContext.cs (1)
77
var tmp =
CachedResponse
;
OutputCacheMiddleware.cs (9)
192
return context.
CachedResponse
;
262
var cacheEntryAge = context.ResponseTime.Value - context.
CachedResponse
.Created;
279
var cachedResponse = context.
CachedResponse
;
310
var body = context.
CachedResponse
.Body;
316
await context.
CachedResponse
.CopyToAsync(response.BodyWriter, context.HttpContext.RequestAborted);
419
&& context.
CachedResponse
is not null)
432
context.
CachedResponse
.SetBody(cachedResponseBody, recycleBuffers: true);
442
await OutputCacheEntryFormatter.StoreAsync(context.CacheKey, context.
CachedResponse
, context.Tags, context.CachedResponseValidFor,
518
var cachedResponse = context.
CachedResponse
;