1 write to XmlDefaultValue
System.Private.Xml (1)
System\Xml\Serialization\XmlReflectionImporter.cs (1)
2150
a.
XmlDefaultValue
= null;
7 references to XmlDefaultValue
System.Private.Xml (7)
System\Xml\Serialization\XmlReflectionImporter.cs (7)
2146
if (a.
XmlDefaultValue
== null || a.
XmlDefaultValue
== DBNull.Value) return null;
2151
return a.
XmlDefaultValue
;
2156
string strValue = Enum.Format(t, a.
XmlDefaultValue
, "G").Replace(",", " ");
2157
string numValue = Enum.Format(t, a.
XmlDefaultValue
, "D");
2159
throw new InvalidOperationException(SR.Format(SR.XmlInvalidDefaultValue, strValue, a.
XmlDefaultValue
.GetType().FullName));
2162
return a.
XmlDefaultValue
;