35 references to OutputCacheParameter
System.Web (35)
Compilation\PageCodeDomTreeGenerator.cs (11)
214
if (cacheSettings.IsParameterSet(
OutputCacheParameter
.CacheProfile)) {
222
if (cacheSettings.IsParameterSet(
OutputCacheParameter
.Duration)) {
230
if (cacheSettings.IsParameterSet(
OutputCacheParameter
.Enabled)) {
238
if (cacheSettings.IsParameterSet(
OutputCacheParameter
.Location)) {
248
if (cacheSettings.IsParameterSet(
OutputCacheParameter
.NoStore)) {
256
if (cacheSettings.IsParameterSet(
OutputCacheParameter
.SqlDependency)) {
264
if (cacheSettings.IsParameterSet(
OutputCacheParameter
.VaryByControl)) {
272
if (cacheSettings.IsParameterSet(
OutputCacheParameter
.VaryByCustom)) {
280
if (cacheSettings.IsParameterSet(
OutputCacheParameter
.VaryByContentEncoding)) {
287
if (cacheSettings.IsParameterSet(
OutputCacheParameter
.VaryByHeader)) {
295
if (cacheSettings.IsParameterSet(
OutputCacheParameter
.VaryByParam)) {
UI\OutputCacheSettings.cs (12)
51
internal 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)
3609
if (cacheSettings.IsParameterSet(
OutputCacheParameter
.Duration)) {
3612
if (cacheSettings.IsParameterSet(
OutputCacheParameter
.VaryByContentEncoding)) {
3615
if (cacheSettings.IsParameterSet(
OutputCacheParameter
.VaryByHeader)) {
3618
if (cacheSettings.IsParameterSet(
OutputCacheParameter
.VaryByCustom)) {
3621
if (cacheSettings.IsParameterSet(
OutputCacheParameter
.VaryByControl)) {
3624
if (cacheSettings.IsParameterSet(
OutputCacheParameter
.VaryByParam)) {
3627
if (cacheSettings.IsParameterSet(
OutputCacheParameter
.SqlDependency)) {
3630
if (cacheSettings.IsParameterSet(
OutputCacheParameter
.NoStore)) {
3633
if (cacheSettings.IsParameterSet(
OutputCacheParameter
.Location)) {
3652
(cacheSettings.IsParameterSet(
OutputCacheParameter
.Duration) == false)) {
3658
(cacheSettings.IsParameterSet(
OutputCacheParameter
.VaryByParam) == false &&
3659
cacheSettings.IsParameterSet(
OutputCacheParameter
.VaryByControl) == false)) {