41 writes to NoStore
Microsoft.AspNetCore.Mvc.Core (1)
ResponseCacheAttribute.cs (1)
111NoStore = _noStore,
Microsoft.AspNetCore.Mvc.Core.Test (40)
Filters\ResponseCacheFilterExecutorTest.cs (28)
20NoStore = true, 75NoStore = true, 86NoStore = true, 96NoStore = true, 107NoStore = true, 117NoStore = false, 127NoStore = false, 137NoStore = false, 147NoStore = false, 157NoStore = false, 167NoStore = false, 203NoStore = true, 213NoStore = true, 224NoStore = true, 259NoStore = false, 270NoStore = true, 281NoStore = false, 292NoStore = false, 303NoStore = false, 340NoStore = false, 351NoStore = true, 362NoStore = false, 373NoStore = false, 385NoStore = false, 421NoStore = true, 441NoStore = true, 500NoStore = true 520NoStore = true,
ResponseCacheAttributeTest.cs (12)
30cacheProfiles.Add("Cache20Sec", new CacheProfile { NoStore = true }); 50cacheProfiles.Add("Cache20Sec", new CacheProfile { NoStore = true }); 69{ Duration = 20, Location = ResponseCacheLocation.Any, NoStore = false, VaryByHeader = "Accept", VaryByQueryKeys = new[] { "QueryKey" } } 77{ Duration = 0, Location = ResponseCacheLocation.None, NoStore = true, VaryByHeader = null, VaryByQueryKeys = null } 96NoStore = true, 101{ Duration = 20, Location = ResponseCacheLocation.Any, NoStore = false, VaryByHeader = "Accept", VaryByQueryKeys = new[] { "QueryKey" } } 115NoStore = false, 120{ Duration = 534, Location = ResponseCacheLocation.Client, NoStore = false, VaryByHeader = "Test", VaryByQueryKeys = new[] { "ProfileQueryKey" } } 133NoStore = false, 138{ Duration = 534, Location = ResponseCacheLocation.Client, NoStore = false, VaryByHeader = "Test", VaryByQueryKeys = new[] { "ProfileQueryKey" } } 150{ Duration = 5234, Location = ResponseCacheLocation.Any, NoStore = false, VaryByHeader = null, VaryByQueryKeys = null } 190cacheProfiles.Add("Test", new CacheProfile { NoStore = false });
3 references to NoStore
Microsoft.AspNetCore.Mvc.Core (2)
Filters\ResponseCacheFilterExecutor.cs (1)
39get => _cacheNoStore ?? _cacheProfile.NoStore ?? false;
ResponseCacheAttribute.cs (1)
102_noStore = _noStore ?? selectedProfile?.NoStore;
Microsoft.AspNetCore.Mvc.Core.Test (1)
ResponseCacheAttributeTest.cs (1)
169Assert.Equal(expectedProfile.NoStore, responseCacheFilter.NoStore);