5 references to HasDefaultSupport
System.Private.Xml (5)
System\Xml\Serialization\ReflectionXmlSerializationWriter.cs (3)
297
bool hasDefault = mapping.TypeDesc.
HasDefaultSupport
&& element.Default is T;
712
bool hasDefault = defaultValue != null && defaultValue != DBNull.Value && mapping.TypeDesc!.
HasDefaultSupport
;
1158
bool hasDefault = defaultValue != null && defaultValue != DBNull.Value && mapping.TypeDesc!.
HasDefaultSupport
;
System\Xml\Serialization\XmlSerializationWriter.cs (1)
2496
bool hasDefault = defaultValue != null && defaultValue != DBNull.Value && mapping.TypeDesc!.
HasDefaultSupport
;
System\Xml\Serialization\XmlSerializationWriterILGen.cs (1)
194
bool hasDefault = defaultValue != null && defaultValue != DBNull.Value && mapping.TypeDesc!.
HasDefaultSupport
;