1 write to XmlDefaultValue
System.Xml (1)
System\Xml\Serialization\XmlReflectionImporter.cs (1)
1862
a.
XmlDefaultValue
= null;
7 references to XmlDefaultValue
System.Xml (7)
System\Xml\Serialization\XmlReflectionImporter.cs (7)
1859
if (a.
XmlDefaultValue
== null || a.
XmlDefaultValue
== DBNull.Value) return null;
1863
return a.
XmlDefaultValue
;
1867
string strValue = Enum.Format(t, a.
XmlDefaultValue
, "G").Replace(",", " ");
1868
string numValue = Enum.Format(t, a.
XmlDefaultValue
, "D");
1870
throw new InvalidOperationException(Res.GetString(Res.XmlInvalidDefaultValue, strValue, a.
XmlDefaultValue
.GetType().FullName));
1873
return a.
XmlDefaultValue
;