8 writes to NoCache
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)
142new System.Net.Http.Headers.CacheControlHeaderValue { NoCache = true };
Microsoft.AspNetCore.ResponseCaching.Tests (1)
ResponseCachingTests.cs (1)
152new System.Net.Http.Headers.CacheControlHeaderValue { NoCache = true };
System.Net.Requests (4)
System\Net\HttpWebRequest.cs (4)
1301NoCache = true, 1309NoCache = true 1357NoCache = true, 1365NoCache = true
System.ServiceModel.Http (1)
System\ServiceModel\Channels\HttpChannelFactory.cs (1)
31private static CacheControlHeaderValue s_requestCacheHeader = new CacheControlHeaderValue { NoCache = true, MaxAge = new TimeSpan(0) };
10 references to NoCache
Microsoft.AspNetCore.Authentication.Test (2)
CookieTests.cs (2)
146Assert.True(transaction.Response.Headers.CacheControl.NoCache); 279Assert.True(transaction.Response.Headers.CacheControl.NoCache);
Microsoft.AspNetCore.Diagnostics.Tests (3)
ExceptionHandlerTest.cs (3)
186Assert.True(response.Headers.CacheControl.NoCache); 242Assert.True(response.Headers.CacheControl.NoCache); 369Assert.True(response.Headers.CacheControl.NoCache);
Microsoft.AspNetCore.Mvc.FunctionalTests (3)
AntiforgeryTests.cs (3)
47Assert.True(response.Headers.CacheControl.NoCache); 99Assert.True(response.Headers.CacheControl.NoCache); 181Assert.True(response.Headers.CacheControl.NoCache);
Microsoft.AspNetCore.StaticAssets.Tests (1)
StaticAssetsIntegrationTests.cs (1)
118Assert.True(response.Headers.CacheControl.NoCache);
System.Net.Http (1)
System\Net\Http\Headers\CacheControlHeaderValue.cs (1)
209if (NoCache)