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