23 references to OutputCacheParameters
System.Web (23)
Compilation\BuildResult.cs (3)
1085if (pageParser.OutputCacheParameters != null) { 1086_outputCacheData = pageParser.OutputCacheParameters; 1144OutputCacheParameters cacheSettings = ucParser.OutputCacheParameters;
Compilation\PageCodeDomTreeGenerator.cs (4)
162if (Parser.OutputCacheParameters != null) { 163OutputCacheParameters cacheSettings = Parser.OutputCacheParameters; 391if (Parser.OutputCacheParameters != null) { 392OutputCacheParameters cacheSettings = Parser.OutputCacheParameters;
Compilation\UserControlCodeDomTreeGenerator.cs (2)
31if (_sourceDataClass != null && Parser.OutputCacheParameters != null) { 32OutputCacheParameters cacheSettings = Parser.OutputCacheParameters;
UI\PageParser.cs (5)
650OutputCacheParameters.VaryByContentEncoding = varyByContentEncoding; 655OutputCacheParameters.VaryByHeader = varyByHeader; 661OutputCacheParameters.Location = _outputCacheLocation; 666OutputCacheParameters.SqlDependency = sqlDependency; 673OutputCacheParameters.NoStore = noStoreValue;
UI\TemplateControlParser.cs (7)
325OutputCacheParameters.Duration = duration; 332OutputCacheParameters.CacheProfile = outputCacheProfile; 341OutputCacheParameters.VaryByCustom = varyByCustom; 346OutputCacheParameters.VaryByControl = varyByControls; 351OutputCacheParameters.VaryByParam = varyByParams; 363OutputCacheParameters.VaryByParam = null; 366OutputCacheParameters.VaryByControl = null;
UI\UserControlParser.cs (2)
90OutputCacheParameters.SqlDependency = sqlDependency; 97get { return OutputCacheParameters.VaryByControl == null; }