SoapReflectionImporter Constructors

Definition

Initializes a new instance of the SoapReflectionImporter class.

Overloads

SoapReflectionImporter()

Initializes a new instance of the SoapReflectionImporter class.

SoapReflectionImporter(String)

Initializes a new instance of the SoapReflectionImporter class, specifying a default XML namespace for imported type mappings.

SoapReflectionImporter(SoapAttributeOverrides)

Initializes a new instance of the SoapReflectionImporter class, specifying overrides for XML serialization.

SoapReflectionImporter(SoapAttributeOverrides, String)

Initializes a new instance of the SoapReflectionImporter class, specifying XML serialization overrides and a default XML namespace.

SoapReflectionImporter()

Source:
SoapReflectionImporter.cs
Source:
SoapReflectionImporter.cs
Source:
SoapReflectionImporter.cs

Initializes a new instance of the SoapReflectionImporter class.

public:
 SoapReflectionImporter();
public SoapReflectionImporter ();
Public Sub New ()

Applies to

SoapReflectionImporter(String)

Source:
SoapReflectionImporter.cs
Source:
SoapReflectionImporter.cs
Source:
SoapReflectionImporter.cs

Initializes a new instance of the SoapReflectionImporter class, specifying a default XML namespace for imported type mappings.

public:
 SoapReflectionImporter(System::String ^ defaultNamespace);
public SoapReflectionImporter (string? defaultNamespace);
public SoapReflectionImporter (string defaultNamespace);
new System.Xml.Serialization.SoapReflectionImporter : string -> System.Xml.Serialization.SoapReflectionImporter
Public Sub New (defaultNamespace As String)

Parameters

defaultNamespace
String

The default XML namespace to use for imported type mappings.

Applies to

SoapReflectionImporter(SoapAttributeOverrides)

Source:
SoapReflectionImporter.cs
Source:
SoapReflectionImporter.cs
Source:
SoapReflectionImporter.cs

Initializes a new instance of the SoapReflectionImporter class, specifying overrides for XML serialization.

public:
 SoapReflectionImporter(System::Xml::Serialization::SoapAttributeOverrides ^ attributeOverrides);
public SoapReflectionImporter (System.Xml.Serialization.SoapAttributeOverrides? attributeOverrides);
public SoapReflectionImporter (System.Xml.Serialization.SoapAttributeOverrides attributeOverrides);
new System.Xml.Serialization.SoapReflectionImporter : System.Xml.Serialization.SoapAttributeOverrides -> System.Xml.Serialization.SoapReflectionImporter
Public Sub New (attributeOverrides As SoapAttributeOverrides)

Parameters

attributeOverrides
SoapAttributeOverrides

A SoapAttributeOverrides object that overrides how the XmlSerializer class serializes mapped types using SOAP encoding.

Applies to

SoapReflectionImporter(SoapAttributeOverrides, String)

Source:
SoapReflectionImporter.cs
Source:
SoapReflectionImporter.cs
Source:
SoapReflectionImporter.cs

Initializes a new instance of the SoapReflectionImporter class, specifying XML serialization overrides and a default XML namespace.

public:
 SoapReflectionImporter(System::Xml::Serialization::SoapAttributeOverrides ^ attributeOverrides, System::String ^ defaultNamespace);
public SoapReflectionImporter (System.Xml.Serialization.SoapAttributeOverrides? attributeOverrides, string? defaultNamespace);
public SoapReflectionImporter (System.Xml.Serialization.SoapAttributeOverrides attributeOverrides, string defaultNamespace);
new System.Xml.Serialization.SoapReflectionImporter : System.Xml.Serialization.SoapAttributeOverrides * string -> System.Xml.Serialization.SoapReflectionImporter
Public Sub New (attributeOverrides As SoapAttributeOverrides, defaultNamespace As String)

Parameters

attributeOverrides
SoapAttributeOverrides

A SoapAttributeOverrides object that overrides how the XmlSerializer class serializes mapped types using SOAP encoding.

defaultNamespace
String

The default XML namespace to use for imported type mappings.

Applies to