1 write to Name
System.Configuration.ConfigurationManager (1)
System\Configuration\PropertyInformation.cs (1)
17
Name
= propertyName;
22 references to Name
System.Configuration.ConfigurationManager (22)
System\Configuration\ConfigurationElement.cs (11)
361
(source._lockedAttributesList.Contains(propInfo.
Name
) ||
364
!source._lockedAllExceptAttributesList.Contains(propInfo.
Name
))
367
if ((propInfo.
Name
== LockAttributesKey) || (propInfo.
Name
== LockAllAttributesExceptKey)) continue;
371
if (ElementInformation.Properties[propInfo.
Name
] == null)
378
source.Properties[propInfo.
Name
];
386
Values.SetValue(propInfo.
Name
, propInfo.Value, flags,
387
source.PropertyInfoInternal(propInfo.
Name
));
392
if (ElementInformation.Properties[propInfo.
Name
].ValueOrigin ==
397
SR.Format(SR.Config_base_attribute_locked, propInfo.
Name
));
401
ElementInformation.Properties[propInfo.
Name
].Value = propInfo.Value;
System\Configuration\PropertyInformation.cs (11)
21
private ConfigurationProperty Prop => _prop ??= _thisElement.Properties[
Name
];
32
get { return _thisElement[
Name
]; }
33
set { _thisElement[
Name
] = value; }
42
if (_thisElement.Values[
Name
] == null) return PropertyValueOrigin.Default;
43
return _thisElement.Values.IsInherited(
Name
) ? PropertyValueOrigin.Inherited : PropertyValueOrigin.SetHere;
47
public bool IsModified => _thisElement.Values[
Name
] != null && _thisElement.Values.IsModified(
Name
);
55
!_thisElement.LockedAllExceptAttributesList.DefinedInParent(
Name
)) ||
57
(_thisElement.LockedAttributesList.DefinedInParent(
Name
) ||
67
PropertySourceInfo psi = _thisElement.Values.GetSourceInfo(
Name
) ??
80
PropertySourceInfo psi = _thisElement.Values.GetSourceInfo(
Name
) ??