10 writes to _lockedAllExceptAttributesList
System.Configuration (10)
System\Configuration\ConfigurationElement.cs (8)
176
_lockedAllExceptAttributesList
= new ConfigurationLockCollection(this, ConfigurationLockCollectionType.LockedExceptionList, String.Empty, source._lockedAllExceptAttributesList);
297
_lockedAllExceptAttributesList
= new ConfigurationLockCollection(this, ConfigurationLockCollectionType.LockedExceptionList, _elementTagName);
512
_lockedAllExceptAttributesList
= null;
527
_lockedAllExceptAttributesList
= new ConfigurationLockCollection(this, ConfigurationLockCollectionType.LockedExceptionList, String.Empty, parentElement._lockedAllExceptAttributesList);
989
_lockedAllExceptAttributesList
= sourceElement._lockedAllExceptAttributesList;
1004
_lockedAllExceptAttributesList
= UnMergeLockList(sourceElement._lockedAllExceptAttributesList,
1250
elem.
_lockedAllExceptAttributesList
= null;
1586
_lockedAllExceptAttributesList
= new ConfigurationLockCollection(this, ConfigurationLockCollectionType.LockedExceptionList, String.Empty, newCollection);
System\Configuration\ConfigurationElementCollection.cs (2)
212
_lockedAllExceptAttributesList
= sourceElement._lockedAllExceptAttributesList;
228
_lockedAllExceptAttributesList
= UnMergeLockList(sourceElement._lockedAllExceptAttributesList,
45 references to _lockedAllExceptAttributesList
System.Configuration (45)
System\Configuration\ConfigurationElement.cs (41)
143
return
_lockedAllExceptAttributesList
;
174
if (source.
_lockedAllExceptAttributesList
!= null) {
175
if (
_lockedAllExceptAttributesList
== null) {
176
_lockedAllExceptAttributesList = new ConfigurationLockCollection(this, ConfigurationLockCollectionType.LockedExceptionList, String.Empty, source.
_lockedAllExceptAttributesList
);
179
StringCollection intersectionCollection = IntersectLockCollections(
_lockedAllExceptAttributesList
, source.
_lockedAllExceptAttributesList
);
181
_lockedAllExceptAttributesList
.ClearInternal(false);
183
_lockedAllExceptAttributesList
.Add(key, ConfigurationValueFlags.Default);
246
if (source._lockedAttributesList != null || source.
_lockedAllExceptAttributesList
!= null) {
251
(source.
_lockedAllExceptAttributesList
!= null && !source.
_lockedAllExceptAttributesList
.Contains(propInfo.Name))
296
if (
_lockedAllExceptAttributesList
== null) {
299
return
_lockedAllExceptAttributesList
;
346
if (
_lockedAllExceptAttributesList
!= null &&
_lockedAllExceptAttributesList
.IsModified) {
377
if (
_lockedAllExceptAttributesList
!= null) {
378
_lockedAllExceptAttributesList
.ResetModified();
502
if (
_lockedAllExceptAttributesList
!= null) {
503
_lockedAllExceptAttributesList
.RemoveInheritedLocks();
526
if (parentElement.
_lockedAllExceptAttributesList
!= null) {
527
_lockedAllExceptAttributesList = new ConfigurationLockCollection(this, ConfigurationLockCollectionType.LockedExceptionList, String.Empty, parentElement.
_lockedAllExceptAttributesList
);
596
(
_lockedAllExceptAttributesList
!= null) &&
597
!
_lockedAllExceptAttributesList
.Contains(key)) ?
916
((
_lockedAllExceptAttributesList
!= null &&
_lockedAllExceptAttributesList
.HasParentElements && !
_lockedAllExceptAttributesList
.DefinedInParent(prop.Name)) ||
989
_lockedAllExceptAttributesList = sourceElement.
_lockedAllExceptAttributesList
;
1003
if (parentElement.
_lockedAllExceptAttributesList
!= null)
1004
_lockedAllExceptAttributesList = UnMergeLockList(sourceElement.
_lockedAllExceptAttributesList
,
1005
parentElement.
_lockedAllExceptAttributesList
, saveMode);
1182
if ((
_lockedAllExceptAttributesList
!= null &&
_lockedAllExceptAttributesList
.HasParentElements && !
_lockedAllExceptAttributesList
.DefinedInParent(prop.Name)) ||
1218
DataToWrite |= SerializeLockList(
_lockedAllExceptAttributesList
, LockAllAttributesExceptKey, writer);
1463
(
_lockedAllExceptAttributesList
!= null && !
_lockedAllExceptAttributesList
.Contains(propertyName))
1585
if (
_lockedAllExceptAttributesList
== null) {
1587
_lockedAllExceptAttributesList
.ClearSeedList(); // Prevent the list from thinking this was set by a parent.
1589
StringCollection intersectionCollection = IntersectLockCollections(
_lockedAllExceptAttributesList
, newCollection);
1601
_lockedAllExceptAttributesList
.ClearInternal(false);
1603
_lockedAllExceptAttributesList
.Add(key, ConfigurationValueFlags.Default);
System\Configuration\ConfigurationElementCollection.cs (4)
212
_lockedAllExceptAttributesList = sourceElement.
_lockedAllExceptAttributesList
;
227
if (parentElement.
_lockedAllExceptAttributesList
!= null)
228
_lockedAllExceptAttributesList = UnMergeLockList(sourceElement.
_lockedAllExceptAttributesList
,
229
parentElement.
_lockedAllExceptAttributesList
, saveMode);