28 references to Inherited
System.Configuration (28)
System\Configuration\ConfigurationElement.cs (16)
165
(ConfigurationValueFlags.
Inherited
| source._fItemLocked) : _fItemLocked;
172
_lockedAttributesList.Add(key, ConfigurationValueFlags.
Inherited
); // Mark entry as from the parent - read only
205
_lockedElementsList.Add(key, ConfigurationValueFlags.
Inherited
); // Mark entry as from the parent - read only
207
collection._lockedElementsList.Add(key, ConfigurationValueFlags.
Inherited
); // add the local copy
266
ConfigurationValueFlags flags = ConfigurationValueFlags.
Inherited
| ConfigurationValueFlags.Locked;
326
if ((_fItemLocked & ConfigurationValueFlags.
Inherited
) == 0) {
487
(_fItemLocked & ConfigurationValueFlags.
Inherited
) != 0)
518
(ConfigurationValueFlags.
Inherited
| parentElement._fItemLocked) :
524
_lockedAttributesList.Add(key, ConfigurationValueFlags.
Inherited
); // Mark entry as from the parent - read only
545
_lockedElementsList.Add(key, ConfigurationValueFlags.
Inherited
); // Mark entry as from the parent - read only
592
ConfigurationValueFlags flags = ConfigurationValueFlags.
Inherited
|
688
_values.SetValue(prop.Name, childElement, ConfigurationValueFlags.
Inherited
, null);
919
(_fItemLocked & ConfigurationValueFlags.
Inherited
) != 0)) {
1222
(_fItemLocked & ConfigurationValueFlags.
Inherited
) == 0 &&
1452
((_fItemLocked & ConfigurationValueFlags.Locked) != 0 && (_fItemLocked & ConfigurationValueFlags.
Inherited
) != 0)
1580
_lockedAttributesList.Add(key, ConfigurationValueFlags.Modified | ConfigurationValueFlags.
Inherited
); // add the local copy
System\Configuration\ConfigurationLockCollection.cs (9)
61
Add(key, ConfigurationValueFlags.
Inherited
); // add the local copy
84
((_thisElement.ItemLocked & ConfigurationValueFlags.
Inherited
) != 0)) {
140
if ((flags != ConfigurationValueFlags.
Inherited
) && (internalDictionary.Contains(name))) {
163
((ConfigurationValueFlags)internalDictionary[name] & ConfigurationValueFlags.
Inherited
) != 0);
193
((ConfigurationValueFlags)internalDictionary[name] & ConfigurationValueFlags.
Inherited
) != 0) {
220
if ((((ConfigurationValueFlags)de.Value & ConfigurationValueFlags.
Inherited
) == 0)
234
Add(key, ConfigurationValueFlags.
Inherited
); //
291
return (bool)(((ConfigurationValueFlags)internalDictionary[name] & ConfigurationValueFlags.
Inherited
) != 0);
337
if ((bool)(((ConfigurationValueFlags)de.Value & ConfigurationValueFlags.
Inherited
) != 0)) {
System\Configuration\ConfigurationValues.cs (1)
173
return ((configurationValue.ValueFlags & ConfigurationValueFlags.
Inherited
) != 0);
System\Configuration\elementinformation.cs (1)
65
((_thisElement.ItemLocked & ConfigurationValueFlags.
Inherited
) != 0));
System\Configuration\PropertyInformation.cs (1)
137
((ThisElement.ItemLocked & ConfigurationValueFlags.
Inherited
) != 0)));