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