XmlSerializer Constructor (Type^, XmlAttributeOverrides^, array<Type^>^, XmlRootAttribute^, String^, String^)
Initializes a new instance of the XmlSerializer class that can serialize objects of type Object into XML document instances, and deserialize XML document instances into objects of type Object. Each object to be serialized can itself contain instances of classes, which this overload overrides with other classes. This overload also specifies the default namespace for all the XML elements and the class to use as the XML root element.
Assembly: System.Xml (in System.Xml.dll)
public: XmlSerializer( Type^ type, XmlAttributeOverrides^ overrides, array<Type^>^ extraTypes, XmlRootAttribute^ root, String^ defaultNamespace, String^ location )
Parameters
- type
-
Type:
System::Type^
The type of the object that this XmlSerializer can serialize.
- overrides
-
Type:
System.Xml.Serialization::XmlAttributeOverrides^
An XmlAttributeOverrides that extends or overrides the behavior of the class specified in the type parameter.
- extraTypes
-
Type:
array<System::Type^>^
A Type array of additional object types to serialize.
- root
-
Type:
System.Xml.Serialization::XmlRootAttribute^
An XmlRootAttribute that defines the XML root element properties.
- defaultNamespace
-
Type:
System::String^
The default namespace of all XML elements in the XML document.
- location
-
Type:
System::String^
The location of the types.
Available since 4.0