8 references to s_nullPropertyValue
System.Configuration.ConfigurationManager (8)
System\Configuration\ConfigurationElement.cs (7)
74
return value == null || value ==
s_nullPropertyValue
;
154
if (o ==
s_nullPropertyValue
) o = null;
639
if (value !=
s_nullPropertyValue
)
845
Values[prop.Name] = value ??
s_nullPropertyValue
;
928
else if (value !=
s_nullPropertyValue
&& !props.Contains(key))
1084
value =
s_nullPropertyValue
;
1087
if (value ==
s_nullPropertyValue
|| (serializeCollectionKey && !prop.IsKey)) continue;
System\Configuration\ConfigurationPropertyAttribute.cs (1)
18
public object DefaultValue { get; set; } = ConfigurationElement.
s_nullPropertyValue
;