100 references to flags
System.Web (100)
UI\PageParser.cs (22)
65
internal bool FRequiresSessionState { get { return
flags
[requiresSessionState]; } }
66
internal bool FReadOnlySessionState { get { return
flags
[readOnlySessionState]; } }
73
internal bool AspCompatMode { get { return
flags
[aspCompatMode]; } }
75
internal bool AsyncMode { get { return
flags
[asyncMode]; } }
77
internal bool ValidateRequest { get { return
flags
[validateRequest]; } }
89
flags
[buffer] = Page.BufferDefault;
90
flags
[requiresSessionState] = true;
91
flags
[validateRequest] = true;
252
flags
[requiresSessionState] = ((PagesConfig.EnableSessionState == PagesEnableSessionState.True) || (PagesConfig.EnableSessionState == PagesEnableSessionState.ReadOnly));
253
flags
[readOnlySessionState] = (PagesConfig.EnableSessionState == PagesEnableSessionState.ReadOnly);
254
flags
[validateRequest] = PagesConfig.ValidateRequest;
255
flags
[aspCompatMode] = HttpRuntime.ApartmentThreading;
345
flags
[requiresSessionState] = true;
346
flags
[readOnlySessionState] = false;
348
flags
[requiresSessionState] = false;
351
flags
[readOnlySessionState] = true;
357
if (
flags
[requiresSessionState]) {
461
flags
[aspCompatMode] = Util.GetBooleanAttribute(name, value);
464
if (
flags
[aspCompatMode] && !HttpRuntime.HasUnmanagedPermission()) {
474
flags
[asyncMode] = Util.GetBooleanAttribute(name, value);
512
flags
[validateRequest] = Util.GetBooleanAttribute(name, value);
579
if (!
flags
[buffer] && _errorPage != null) {
UI\PageParserFilter.cs (1)
69
CalledFromParseControl = parser.
flags
[TemplateParser.calledFromParseControlFlag];
UI\TemplateControlParser.cs (5)
49
internal bool FAutoEventWireup { get { return !
flags
[noAutoEventWireup]; } }
52
get { return
flags
[requiresCompilation] || CompilationMode == CompilationMode.Always; }
60
flags
[noAutoEventWireup] = !PagesConfig.AutoEventWireup;
209
flags
[noAutoEventWireup] = !Util.GetBooleanAttribute(name, value);
303
flags
[noAutoEventWireup] = true;
UI\TemplateParser.cs (72)
143
get { return
flags
[ignoreControlProperties]; }
144
set {
flags
[ignoreControlProperties] = value; }
149
get { return
flags
[throwOnFirstParseError]; }
150
set {
flags
[throwOnFirstParseError] = value; }
157
internal bool HasCodeBehind { get { return
flags
[hasCodeBehind]; } }
168
get { return
flags
[inDesigner]; }
169
set {
flags
[inDesigner] = value; }
175
get { return
flags
[ignoreParseErrors]; }
176
set {
flags
[ignoreParseErrors] = value; }
190
if (value == CompilationMode.Never &&
flags
[requiresCompilation]) {
304
flags
[requiresCompilation] = true;
316
flags
[requiresCompilation] = true;
328
flags
[requiresCompilation] = true;
340
flags
[requiresCompilation] = true;
445
internal bool FExplicit { get { return
flags
[useExplicit]; } }
447
internal bool FLinePragmas { get { return !
flags
[noLinePragmas]; } }
452
internal bool FStrict { get { return
flags
[strict]; } }
521
flags
[ignoreParserFilter] = ignoreFilter;
522
flags
[calledFromParseControlFlag] = true;
647
flags
[useExplicit] = _compConfig.Explicit;
648
flags
[strict] = _compConfig.Strict;
658
if (!
flags
[ignoreParserFilter]) {
814
flags
[ignoreNextSpaceString] = true;
986
if (!
flags
[inScriptTag] &&
1017
flags
[ignoreNextSpaceString] = true;
1050
else if (!
flags
[inScriptTag] &&
1062
else if (!
flags
[inScriptTag] && (match = aspEncodedExprRegex.Match(text, textPos)).Success) {
1070
else if (!
flags
[inScriptTag] &&
1077
else if (!
flags
[inScriptTag] &&
1097
else if (!
flags
[inScriptTag] &&
1129
if (!fMatchedButNotProcessed && !
flags
[inScriptTag])
1147
if (
flags
[inScriptTag] && !IgnoreParseErrors) {
1214
if (!
flags
[mainDirectiveHandled]) {
1216
flags
[mainDirectiveHandled] = true;
1256
if (
flags
[hasDebugAttribute])
1257
compilParams.IncludeDebugInformation =
flags
[debug];
1290
flags
[ignoreNextSpaceString] = false;
1312
if (
flags
[ignoreNextSpaceString]) {
1313
flags
[ignoreNextSpaceString] = false;
1322
if (!
flags
[mainDirectiveHandled]) {
1324
flags
[mainDirectiveHandled] = true;
1373
if (!
flags
[ignoreScriptTag]) {
1469
if (StringUtil.EqualsIgnoreCase(tagName, "script") &&
flags
[isServerTag]) {
1475
if (!
flags
[mainDirectiveHandled]) {
1477
flags
[mainDirectiveHandled] = true;
1503
if (subBuilder == null &&
flags
[isServerTag]) {
1520
if (!
flags
[isServerTag] || IgnoreParseErrors)
1563
else if (
flags
[isServerTag]) {
1628
flags
[ignoreNextSpaceString] = true;
1658
flags
[inScriptTag] = true;
1660
flags
[ignoreScriptTag] = true;
1685
flags
[inScriptTag] = true;
1697
if (
flags
[inScriptTag]) {
1704
flags
[inScriptTag] = false;
1705
flags
[ignoreScriptTag] = false;
1748
if (
flags
[mainDirectiveSpecified]) {
1770
flags
[mainDirectiveSpecified] = true;
1771
flags
[mainDirectiveHandled] = true;
1904
flags
[debug] = Util.GetBooleanAttribute(name, value);
1905
if (
flags
[debug] && !HttpRuntime.HasAspNetHostingPermission(AspNetHostingPermissionLevel.Medium)) {
1909
flags
[hasDebugAttribute] = true;
1913
flags
[noLinePragmas] = !Util.GetBooleanAttribute(name, value);
1933
flags
[useExplicit] = Util.GetBooleanAttribute(name, value);
1936
flags
[strict] = Util.GetBooleanAttribute(name, value);
2138
flags
[hasCodeBehind] = true;
2403
if (
flags
[inScriptTag]) {
2481
flags
[ignoreNextSpaceString] = true;
2588
flags
[ignoreNextSpaceString] = true;
2677
flags
[isServerTag] = false;
2720
flags
[isServerTag] = true;
2994
if (
flags
[attemptedImplicitResources])
2997
flags
[attemptedImplicitResources] = true;