5 references to XmlSerializer
System.Private.Xml (5)
System\Xml\Serialization\XmlSerializer.cs (4)
173
this
(type, overrides, extraTypes, root, defaultNamespace, null)
179
public XmlSerializer(Type type, XmlRootAttribute? root) :
this
(type, null, Type.EmptyTypes, root, null, null)
185
public XmlSerializer(Type type, Type[]? extraTypes) :
this
(type, null, extraTypes, null, null, null)
191
public XmlSerializer(Type type, XmlAttributeOverrides? overrides) :
this
(type, overrides, Type.EmptyTypes, null, null, null)
System\Xml\Serialization\XmlSerializerFactory.cs (1)
74
return new
XmlSerializer
(type, overrides, extraTypes, root, defaultNamespace, location);