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