1 write to SoapDefaultValue
System.Xml (1)
System\Xml\Serialization\SoapReflectionImporter.cs (1)
685
a.
SoapDefaultValue
= null;
11 references to SoapDefaultValue
System.Xml (11)
System\Xml\Serialization\SoapReflectionImporter.cs (11)
683
if (a.
SoapDefaultValue
== null || a.
SoapDefaultValue
== DBNull.Value) return null;
686
return a.
SoapDefaultValue
;
690
if (fieldTypeDesc != typeScope.GetTypeDesc(a.
SoapDefaultValue
.GetType()))
691
throw new InvalidOperationException(Res.GetString(Res.XmlInvalidDefaultEnumValue, a.
SoapDefaultValue
.GetType().FullName, fieldTypeDesc.FullName));
692
string strValue = Enum.Format(a.
SoapDefaultValue
.GetType(), a.
SoapDefaultValue
, "G").Replace(",", " ");
693
string numValue = Enum.Format(a.
SoapDefaultValue
.GetType(), a.
SoapDefaultValue
, "D");
695
throw new InvalidOperationException(Res.GetString(Res.XmlInvalidDefaultValue, strValue, a.
SoapDefaultValue
.GetType().FullName));
698
return a.
SoapDefaultValue
;