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