6 writes to MaxAge
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\HttpChannelFactory.cs (1)
32private static CacheControlHeaderValue s_requestCacheHeader = new CacheControlHeaderValue { NoCache = true, MaxAge = new TimeSpan(0) };
Microsoft.AspNetCore.OutputCaching.Tests (1)
OutputCacheTests.cs (1)
570MaxAge = TimeSpan.FromSeconds(0)
Microsoft.AspNetCore.ResponseCaching.Tests (1)
ResponseCachingTests.cs (1)
506MaxAge = TimeSpan.FromSeconds(0)
System.Net.Requests (2)
System\Net\HttpWebRequest.cs (2)
1331cacheControl.MaxAge = httpRequestCachePolicy.MaxAge; 1344MaxAge = TimeSpan.Zero
System.ServiceModel.Http (1)
System\ServiceModel\Channels\HttpChannelFactory.cs (1)
31private static CacheControlHeaderValue s_requestCacheHeader = new CacheControlHeaderValue { NoCache = true, MaxAge = new TimeSpan(0) };
1 reference to MaxAge
Microsoft.AspNetCore.Mvc.FunctionalTests (1)
RazorPagesTest.cs (1)
1253Assert.Equal(TimeSpan.FromSeconds(10), cacheControl.MaxAge.Value);