2 writes to ResponseTime
Microsoft.AspNetCore.OutputCaching (2)
OutputCacheMiddleware.cs (2)
270context.ResponseTime = _options.TimeProvider.GetUtcNow(); 476context.ResponseTime = _options.TimeProvider.GetUtcNow();
3 references to ResponseTime
Microsoft.AspNetCore.OutputCaching (3)
OutputCacheMiddleware.cs (3)
271var cacheEntryAge = context.ResponseTime.Value - context.CachedResponse.Created; 402headers.Date = HeaderUtilities.FormatDate(context.ResponseTime!.Value); 405var cacheEntry = new OutputCacheEntry(context.ResponseTime!.Value, response.StatusCode)