XmlReflectionImporter Constructors

Definition

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()

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)

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)

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)

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.

Applies to