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