58 references to _flags
System.Configuration.ConfigurationManager (58)
System\Configuration\SectionInformation.cs (58)
58_flags[FlagAllowLocation] = true; 59_flags[FlagRestartOnExternalChanges] = true; 60_flags[FlagRequirePermission] = true; 61_flags[FlagInheritInChildApps] = true; 62_flags[FlagForceSave] = false; 67private bool IsRuntime => _flags[FlagAttached] && 70internal bool Attached => _flags[FlagAttached]; 76get { return _flags[FlagRemoved]; } 77set { _flags[FlagRemoved] = value; } 154get { return _flags[FlagAllowLocation]; } 166_flags[FlagAllowLocation] = value; 201_flags[FlagChildrenLocked] = _flags[FlagChildrenLockWithoutFileInput]; 204_flags[FlagChildrenLocked] = false; 207_flags[FlagChildrenLocked] = true; 216public OverrideMode OverrideModeEffective => _flags[FlagChildrenLocked] ? OverrideMode.Deny : OverrideMode.Allow 227_flags[FlagInheritInChildApps]; 257get { return _flags[FlagInheritInChildApps]; } 262_flags[FlagInheritInChildApps] = value; 273return _flags[FlagDeclared]; 285return _flags[FlagDeclarationRequired]; 295public bool IsLocked => _flags[FlagLocationLocked] || !IsDefinitionAllowed || 304if (!_flags[FlagProtectionProviderDetermined] && (_configRecord != null)) 307_flags[FlagProtectionProviderDetermined] = true; 318get { return _flags[FlagRestartOnExternalChanges]; } 330_flags[FlagRestartOnExternalChanges] = value; 339get { return _flags[FlagRequirePermission]; } 351_flags[FlagRequirePermission] = value; 394get { return _flags[FlagForceSave]; } 399_flags[FlagForceSave] = value; 424_flags[FlagAttached] = true; 432_flags[FlagAllowLocation] = factoryRecord.AllowLocation; 433_flags[FlagRestartOnExternalChanges] = factoryRecord.RestartOnExternalChanges; 434_flags[FlagRequirePermission] = factoryRecord.RequirePermission; 439_flags[FlagIsUndeclared] = true; 440_flags[FlagDeclared] = false; 441_flags[FlagDeclarationRequired] = false; 445_flags[FlagIsUndeclared] = false; 446_flags[FlagDeclared] = configRecord.GetFactoryRecord(factoryRecord.ConfigKey, false) != null; 447_flags[FlagDeclarationRequired] = configRecord.IsRootDeclaration(factoryRecord.ConfigKey, false); 451_flags[FlagLocationLocked] = sectionRecord.Locked; 452_flags[FlagChildrenLocked] = sectionRecord.LockChildren; 453_flags[FlagChildrenLockWithoutFileInput] = sectionRecord.LockChildrenWithoutFileInput; 459_flags[FlagProtectionProviderDetermined] = fileInput.IsProtectionProviderDetermined; 467_flags[FlagInheritInChildApps] = !sectionXmlInfo.SkipInChildApps; 472_flags[FlagProtectionProviderDetermined] = false; 483_flags[FlagAttached] = false; 514if (_flags[FlagIsParentSection]) 517if (!_flags[FlagAllowLocation] && 525if (_flags[FlagIsParentSection]) 548if (_flags[FlagIsUndeclared]) 575_flags[FlagDeclarationRequired]) 588if (force && _flags[FlagIsUndeclared]) 594_flags[FlagDeclared] = force; 622_flags[FlagProtectionProviderDetermined] = true; 632_flags[FlagProtectionProviderDetermined] = true; 640if (_flags[FlagIsParentSection]) 651ancestor.SectionInformation._flags[FlagIsParentSection] = true;