XmlReflectionImporter Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the XmlReflectionImporter class.
Overloads
XmlReflectionImporter() |
This API supports the product infrastructure and is not intended to be used directly from your code. Initializes a new instance of the XmlReflectionImporter class. |
XmlReflectionImporter(String) |
This API supports the product infrastructure and is not intended to be used directly from your code. Initializes a new instance of the XmlReflectionImporter class using the specified default XML namespace. |
XmlReflectionImporter(XmlAttributeOverrides) |
This API supports the product infrastructure and is not intended to be used directly from your code. Initializes a new instance of the XmlReflectionImporter class using the specified XML serialization overrides. |
XmlReflectionImporter(XmlAttributeOverrides, String) |
This API supports the product infrastructure and is not intended to be used directly from your code. Initializes a new instance of the XmlReflectionImporter class using the specified XML serialization overrides and default XML namespace. |
XmlReflectionImporter()
- Source:
- XmlReflectionImporter.cs
- Source:
- XmlReflectionImporter.cs
- Source:
- XmlReflectionImporter.cs
Initializes a new instance of the XmlReflectionImporter class.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
XmlReflectionImporter();
public XmlReflectionImporter ();
Public Sub New ()
Remarks
You do not need to create an instance of an XmlReflectionImporter object directly.
Applies to
XmlReflectionImporter(String)
- Source:
- XmlReflectionImporter.cs
- Source:
- XmlReflectionImporter.cs
- Source:
- XmlReflectionImporter.cs
Initializes a new instance of the XmlReflectionImporter class using the specified default XML namespace.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
XmlReflectionImporter(System::String ^ defaultNamespace);
public XmlReflectionImporter (string? defaultNamespace);
public XmlReflectionImporter (string defaultNamespace);
new System.Xml.Serialization.XmlReflectionImporter : string -> System.Xml.Serialization.XmlReflectionImporter
Public Sub New (defaultNamespace As String)
Parameters
- defaultNamespace
- String
The default XML namespace to use for imported type mappings.
Remarks
It is not necessary to create an instance of the XmlReflectionImporter class directly.
Applies to
XmlReflectionImporter(XmlAttributeOverrides)
- Source:
- XmlReflectionImporter.cs
- Source:
- XmlReflectionImporter.cs
- Source:
- XmlReflectionImporter.cs
Initializes a new instance of the XmlReflectionImporter class using the specified XML serialization overrides.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
XmlReflectionImporter(System::Xml::Serialization::XmlAttributeOverrides ^ attributeOverrides);
public XmlReflectionImporter (System.Xml.Serialization.XmlAttributeOverrides? attributeOverrides);
public XmlReflectionImporter (System.Xml.Serialization.XmlAttributeOverrides attributeOverrides);
new System.Xml.Serialization.XmlReflectionImporter : System.Xml.Serialization.XmlAttributeOverrides -> System.Xml.Serialization.XmlReflectionImporter
Public Sub New (attributeOverrides As XmlAttributeOverrides)
Parameters
- attributeOverrides
- XmlAttributeOverrides
An object that overrides how the XmlSerializer class serializes mapped types.
Remarks
It is not necessary to create an instance of the XmlReflectionImporter class directly.
Applies to
XmlReflectionImporter(XmlAttributeOverrides, String)
- Source:
- XmlReflectionImporter.cs
- Source:
- XmlReflectionImporter.cs
- Source:
- XmlReflectionImporter.cs
Initializes a new instance of the XmlReflectionImporter class using the specified XML serialization overrides and default XML namespace.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
XmlReflectionImporter(System::Xml::Serialization::XmlAttributeOverrides ^ attributeOverrides, System::String ^ defaultNamespace);
public XmlReflectionImporter (System.Xml.Serialization.XmlAttributeOverrides? attributeOverrides, string? defaultNamespace);
public XmlReflectionImporter (System.Xml.Serialization.XmlAttributeOverrides attributeOverrides, string defaultNamespace);
new System.Xml.Serialization.XmlReflectionImporter : System.Xml.Serialization.XmlAttributeOverrides * string -> System.Xml.Serialization.XmlReflectionImporter
Public Sub New (attributeOverrides As XmlAttributeOverrides, defaultNamespace As String)
Parameters
- attributeOverrides
- XmlAttributeOverrides
An object that overrides how the XmlSerializer class serializes mapped types.
- defaultNamespace
- String
The default XML namespace to use for imported type mappings.
Remarks
It is not necessary to create an instance of the XmlReflectionImporter class directly.