15 references to s_nullPropertyValue
System.Configuration (15)
System\Configuration\ConfigurationElement.cs (11)
600
if (value !=
s_nullPropertyValue
) {
641
Values[configProperty.Name] ==
s_nullPropertyValue
) &&
644
compareToElem.Values[configProperty.Name] ==
s_nullPropertyValue
) &&
697
else if (o ==
s_nullPropertyValue
) {
930
_values[prop.Name] = (value != null) ? value :
s_nullPropertyValue
;
1025
if (value !=
s_nullPropertyValue
) {
1049
if ((prop.IsRequired == true || saveMode == ConfigurationSaveMode.Full) && (value == null || value ==
s_nullPropertyValue
)) {
1061
if (value != null && value !=
s_nullPropertyValue
) {
1091
if (value != null && value !=
s_nullPropertyValue
)
1186
value =
s_nullPropertyValue
;
1189
if (value !=
s_nullPropertyValue
) {
System\Configuration\ConfigurationProperty.cs (3)
217
if (value != null && value != ConfigurationElement.
s_nullPropertyValue
) {
237
if ((defaultValue == null || defaultValue == ConfigurationElement.
s_nullPropertyValue
) &&
252
if (defaultValue == null || defaultValue == ConfigurationElement.
s_nullPropertyValue
) {
System\Configuration\ConfigurationPropertyAttribute.cs (1)
31
private object _DefaultValue = ConfigurationElement.
s_nullPropertyValue
;