SoapReflectionImporter::ImportMembersMapping Method (String^, String^, array<XmlReflectionMember^>^)

 

Generates internal type mappings for information that is gathered from a Web service method.

Namespace:   System.Xml.Serialization
Assembly:  System.Xml (in System.Xml.dll)

public:
XmlMembersMapping^ ImportMembersMapping(
	String^ elementName,
	String^ ns,
	array<XmlReflectionMember^>^ members
)

Parameters

elementName
Type: System::String^

An XML element name produced from the Web service method.

ns
Type: System::String^

An XML element namespace produced from the Web service method.

members
Type: array<System.Xml.Serialization::XmlReflectionMember^>^

An array of .NET Framework code entities that belong to a Web service method.

Return Value

Type: System.Xml.Serialization::XmlMembersMapping^

Internal .NET Framework type mappings to the element parts of a WSDL message definition.

The ImportMembersMapping method is called while initializing a Web service or client, or reflecting a Web service. You do not need to call it directly.

The following list describes possible values for the members parameter:

  • Web service method input parameters.

  • Web service method output parameters, plus the return type, if not void, at index zero.

  • SOAP input headers.

  • SOAP output headers.

.NET Framework
Available since 1.1
Return to top
Show: