1 write to DefaultValue
System.Configuration.ConfigurationManager (1)
System\Configuration\ConfigurationProperty.cs (1)
287DefaultValue = value;
7 references to DefaultValue
System.Configuration.ConfigurationManager (7)
System\Configuration\ConfigurationElement.cs (6)
150else o = prop.DefaultValue; 689if (!((IsNullOrNullProperty(thisValue) && Equals(otherValue, configProperty.DefaultValue)) 690|| (IsNullOrNullProperty(otherValue) && Equals(thisValue, configProperty.DefaultValue)))) 955if (prop.DefaultValue != null) 956value = prop.DefaultValue; // need to make sure required properties are persisted 962object value2 = parentElement?.Values[prop.Name] ?? prop.DefaultValue;
System\Configuration\PropertyInformation.cs (1)
36public object DefaultValue => Prop.DefaultValue;