35 references to OutputCacheParameter
System.Web (35)
Compilation\PageCodeDomTreeGenerator.cs (11)
214if (cacheSettings.IsParameterSet(OutputCacheParameter.CacheProfile)) { 222if (cacheSettings.IsParameterSet(OutputCacheParameter.Duration)) { 230if (cacheSettings.IsParameterSet(OutputCacheParameter.Enabled)) { 238if (cacheSettings.IsParameterSet(OutputCacheParameter.Location)) { 248if (cacheSettings.IsParameterSet(OutputCacheParameter.NoStore)) { 256if (cacheSettings.IsParameterSet(OutputCacheParameter.SqlDependency)) { 264if (cacheSettings.IsParameterSet(OutputCacheParameter.VaryByControl)) { 272if (cacheSettings.IsParameterSet(OutputCacheParameter.VaryByCustom)) { 280if (cacheSettings.IsParameterSet(OutputCacheParameter.VaryByContentEncoding)) { 287if (cacheSettings.IsParameterSet(OutputCacheParameter.VaryByHeader)) { 295if (cacheSettings.IsParameterSet(OutputCacheParameter.VaryByParam)) {
UI\OutputCacheSettings.cs (12)
51internal bool IsParameterSet(OutputCacheParameter value) 62_flags[(int) OutputCacheParameter.Enabled] = true; 73_flags[(int) OutputCacheParameter.Duration] = true; 84_flags[(int) OutputCacheParameter.Location] = true; 95_flags[(int) OutputCacheParameter.VaryByCustom] = true; 106_flags[(int) OutputCacheParameter.VaryByParam] = true; 117_flags[(int) OutputCacheParameter.VaryByContentEncoding] = true; 128_flags[(int) OutputCacheParameter.VaryByHeader] = true; 139_flags[(int) OutputCacheParameter.NoStore] = true; 150_flags[(int) OutputCacheParameter.SqlDependency] = true; 161_flags[(int) OutputCacheParameter.VaryByControl] = true; 172_flags[(int) OutputCacheParameter.CacheProfile] = true;
UI\Page.cs (12)
3609if (cacheSettings.IsParameterSet(OutputCacheParameter.Duration)) { 3612if (cacheSettings.IsParameterSet(OutputCacheParameter.VaryByContentEncoding)) { 3615if (cacheSettings.IsParameterSet(OutputCacheParameter.VaryByHeader)) { 3618if (cacheSettings.IsParameterSet(OutputCacheParameter.VaryByCustom)) { 3621if (cacheSettings.IsParameterSet(OutputCacheParameter.VaryByControl)) { 3624if (cacheSettings.IsParameterSet(OutputCacheParameter.VaryByParam)) { 3627if (cacheSettings.IsParameterSet(OutputCacheParameter.SqlDependency)) { 3630if (cacheSettings.IsParameterSet(OutputCacheParameter.NoStore)) { 3633if (cacheSettings.IsParameterSet(OutputCacheParameter.Location)) { 3652(cacheSettings.IsParameterSet(OutputCacheParameter.Duration) == false)) { 3658(cacheSettings.IsParameterSet(OutputCacheParameter.VaryByParam) == false && 3659cacheSettings.IsParameterSet(OutputCacheParameter.VaryByControl) == false)) {