XmlSchemaExporter.ExportMembersMapping Method

Definition

Adds an element declaration to the applicable XmlSchema for each of the element parts of a literal SOAP message definition.

Overloads

ExportMembersMapping(XmlMembersMapping)

This API supports the product infrastructure and is not intended to be used directly from your code.

Adds an element declaration to the applicable XmlSchema for each of the element parts of a literal SOAP message definition.

ExportMembersMapping(XmlMembersMapping, Boolean)

This API supports the product infrastructure and is not intended to be used directly from your code.

Adds an element declaration to the applicable XmlSchema for each of the element parts of a literal SOAP message definition, and specifies whether enclosing elements are included.

ExportMembersMapping(XmlMembersMapping)

Source:
XmlSchemaExporter.cs
Source:
XmlSchemaExporter.cs
Source:
XmlSchemaExporter.cs

Adds an element declaration to the applicable XmlSchema for each of the element parts of a literal SOAP message definition.

This API supports the product infrastructure and is not intended to be used directly from your code.

public:
 void ExportMembersMapping(System::Xml::Serialization::XmlMembersMapping ^ xmlMembersMapping);
public void ExportMembersMapping (System.Xml.Serialization.XmlMembersMapping xmlMembersMapping);
member this.ExportMembersMapping : System.Xml.Serialization.XmlMembersMapping -> unit
Public Sub ExportMembersMapping (xmlMembersMapping As XmlMembersMapping)

Parameters

xmlMembersMapping
XmlMembersMapping

The internal .NET Framework type mappings for the element parts of a Web Services Description Language (WSDL) message definition.

Remarks

For each SOAP message part, the ExportMembersMapping method adds an XML schema element declaration to the XmlSchema that uses the same namespace as the part. A literal message definition normally contains a single part.

Use the ServiceDescriptionReflector class instead.

Applies to

ExportMembersMapping(XmlMembersMapping, Boolean)

Source:
XmlSchemaExporter.cs
Source:
XmlSchemaExporter.cs
Source:
XmlSchemaExporter.cs

Adds an element declaration to the applicable XmlSchema for each of the element parts of a literal SOAP message definition, and specifies whether enclosing elements are included.

This API supports the product infrastructure and is not intended to be used directly from your code.

public:
 void ExportMembersMapping(System::Xml::Serialization::XmlMembersMapping ^ xmlMembersMapping, bool exportEnclosingType);
public void ExportMembersMapping (System.Xml.Serialization.XmlMembersMapping xmlMembersMapping, bool exportEnclosingType);
member this.ExportMembersMapping : System.Xml.Serialization.XmlMembersMapping * bool -> unit
Public Sub ExportMembersMapping (xmlMembersMapping As XmlMembersMapping, exportEnclosingType As Boolean)

Parameters

xmlMembersMapping
XmlMembersMapping

The internal mapping between a .NET Framework type and an XML schema element.

exportEnclosingType
Boolean

true if the schema elements that enclose the schema are to be included; otherwise, false.

Applies to