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