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