6 references to ItemLocked
System.Configuration.ConfigurationManager (6)
System\Configuration\ConfigurationLockCollection.cs (2)
127if (((_thisElement.ItemLocked & ConfigurationValueFlags.Locked) != 0) && 128((_thisElement.ItemLocked & ConfigurationValueFlags.Inherited) != 0))
System\Configuration\ElementInformation.cs (2)
24public bool IsLocked => ((_thisElement.ItemLocked & ConfigurationValueFlags.Locked) != 0) && 25((_thisElement.ItemLocked & ConfigurationValueFlags.Inherited) != 0);
System\Configuration\PropertyInformation.cs (2)
59(((_thisElement.ItemLocked & ConfigurationValueFlags.Locked) != 0) && 60((_thisElement.ItemLocked & ConfigurationValueFlags.Inherited) != 0));