16 references to DefaultValue
System.Configuration (7)
System\Configuration\ConfigurationElement.cs (6)
642
Object.Equals(compareToElem.Values[configProperty.Name], configProperty.
DefaultValue
)) ||
645
Object.Equals(Values[configProperty.Name], configProperty.
DefaultValue
))))
694
o = prop.
DefaultValue
;
1056
if (prop.
DefaultValue
!= null) {
1057
value = prop.
DefaultValue
; // need to make sure required properties are persisted
1067
value2 = prop.
DefaultValue
;
System\Configuration\PropertyInformation.cs (1)
71
return Prop.
DefaultValue
;
System.ServiceModel (1)
System\ServiceModel\Configuration\ServiceModelConfigurationElement.cs (1)
27
if (!object.Equals(value, configurationProperty.
DefaultValue
))
System.Web (4)
Configuration\FormsAuthenticationConfiguration.cs (4)
237
base[_propName] = _propName.
DefaultValue
;
253
base[_propLoginUrl] = _propLoginUrl.
DefaultValue
;
269
base[_propDefaultUrl] = _propDefaultUrl.
DefaultValue
;
307
base[_propPath] = _propPath.
DefaultValue
;
System.Web.Extensions (4)
Configuration\ScriptingJsonSerializationSection.cs (2)
98
_recusionLimit = (int)_propRecursionLimitLimit.
DefaultValue
;
99
_maxJsonLimit = (int)_propMaxJsonLength.
DefaultValue
;
Configuration\ScriptingScriptResourceHandlerSection.cs (2)
77
s_enableCaching = (bool)_propEnableCaching.
DefaultValue
;
78
s_enableCompression = (bool)_propEnableCompression.
DefaultValue
;