1 write to CachedEntryAge
Microsoft.AspNetCore.ResponseCaching (1)
ResponseCachingMiddleware.cs (1)
147
context.
CachedEntryAge
= cachedEntryAge > TimeSpan.Zero ? cachedEntryAge : TimeSpan.Zero;
2 references to CachedEntryAge
Microsoft.AspNetCore.ResponseCaching (2)
ResponseCachingMiddleware.cs (1)
181
response.Headers.Age = HeaderUtilities.FormatNonNegativeInt64(context.
CachedEntryAge
.Value.Ticks / TimeSpan.TicksPerSecond);
ResponseCachingPolicyProvider.cs (1)
168
var age = context.
CachedEntryAge
!.Value;