2 instantiations of OutputCacheParameters
System.Web (2)
UI\Page.cs (1)
3504OutputCacheParameters cacheSettings = new OutputCacheParameters();
UI\TemplateControlParser.cs (1)
83_outputCacheSettings = new OutputCacheParameters();
12 references to OutputCacheParameters
System.Web (12)
Compilation\BuildResult.cs (2)
1067private OutputCacheParameters _outputCacheData; 1144OutputCacheParameters cacheSettings = ucParser.OutputCacheParameters;
Compilation\PageCodeDomTreeGenerator.cs (5)
163OutputCacheParameters cacheSettings = Parser.OutputCacheParameters; 172CodeMemberField outputCacheSettingsField = new CodeMemberField(typeof(OutputCacheParameters), outputCacheSettingsFieldName); 197outputCacheSettingsDeclaration.Type = new CodeTypeReference(typeof(OutputCacheParameters)); 203cacheSettingsObject.CreateType = new CodeTypeReference(typeof(OutputCacheParameters)); 392OutputCacheParameters cacheSettings = Parser.OutputCacheParameters;
Compilation\UserControlCodeDomTreeGenerator.cs (1)
32OutputCacheParameters cacheSettings = Parser.OutputCacheParameters;
UI\Page.cs (2)
3504OutputCacheParameters cacheSettings = new OutputCacheParameters(); 3523protected internal virtual void InitOutputCache(OutputCacheParameters cacheSettings)
UI\TemplateControlParser.cs (2)
46private OutputCacheParameters _outputCacheSettings; 47internal OutputCacheParameters OutputCacheParameters { get { return _outputCacheSettings; } }