1 write to XmlDefaultValue
dotnet-svcutil-lib (1)
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlReflectionImporter.cs (1)
2139a.XmlDefaultValue = null;
7 references to XmlDefaultValue
dotnet-svcutil-lib (7)
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlReflectionImporter.cs (7)
2135if (a.XmlDefaultValue == null || a.XmlDefaultValue == DBNull.Value) return null; 2140return a.XmlDefaultValue; 2145string strValue = Enum.Format(t, a.XmlDefaultValue, "G").Replace(",", " "); 2146string numValue = Enum.Format(t, a.XmlDefaultValue, "D"); 2148throw new InvalidOperationException(string.Format(ResXml.XmlInvalidDefaultValue, strValue, a.XmlDefaultValue.GetType().FullName)); 2151return a.XmlDefaultValue;