XmlReflectionImporter Class

Definition

Generates mappings to XML schema element declarations, including literal XML Schema Definition (XSD) message parts in a Web Services Description Language (WSDL) document, for .NET types or Web service method information.

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

public ref class XmlReflectionImporter
public class XmlReflectionImporter
type XmlReflectionImporter = class
Public Class XmlReflectionImporter
Inheritance
XmlReflectionImporter

Remarks

The XmlReflectionImporter class is not used directly. Instead, it is used as follows:

  • By the ServiceDescriptionReflector class while it creates ServiceDescription objects from classes that are identified as Web services.

  • By a Web service or client, including during initialization.

  • To initialize an XmlSerializer object.

  • By the XML Schema Definition tool (Xsd.exe) while the tool generates XML schemas from types in a run-time assembly file.

  • By the Web Services Description Language tool (Wsdl.exe) while the tool generates client proxy classes or abstract server classes from a WSDL document.

The XmlReflectionImporter class is used for Web services when a service or client specifies:

  • Literal use, which indicates that the contents of SOAP message parameters and return values (or request and response documents) are literally specified with XML schema definitions.

  • Non-SOAP implementations of Web services using the HTTP-GET and HTTP-POST operations.

Constructors

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.

Methods

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetType()

Gets the Type of the current instance.

(Inherited from Object)
ImportMembersMapping(String, String, XmlReflectionMember[], Boolean)

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

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

ImportMembersMapping(String, String, XmlReflectionMember[], Boolean, Boolean)

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

Returns internal type mappings using information from a Web service method, and allows you to specify an XML element name, XML namespace, and other options.

ImportMembersMapping(String, String, XmlReflectionMember[], Boolean, Boolean, Boolean)

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

Returns internal type mappings using information from a Web service method, and allows you to specify an XML element name, XML namespace, and other options.

ImportMembersMapping(String, String, XmlReflectionMember[], Boolean, Boolean, Boolean, XmlMappingAccess)

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

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

ImportTypeMapping(Type)

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

Generates a mapping to an XML Schema element for a specified .NET type.

ImportTypeMapping(Type, String)

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

Generates a mapping to an XML Schema element for a .NET type, using the specified type and namespace.

ImportTypeMapping(Type, XmlRootAttribute)

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

Generates a mapping to an XML Schema element for a .NET type, using the specified type and attribute.

ImportTypeMapping(Type, XmlRootAttribute, String)

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

Generates a mapping to an XML Schema element for a .NET type, using the specified type, attribute, and namespace.

IncludeType(Type)

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

Includes mappings for a type for later use when import methods are invoked.

IncludeTypes(ICustomAttributeProvider)

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

Includes mappings for derived types for later use when import methods are invoked.

MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ToString()

Returns a string that represents the current object.

(Inherited from Object)

Applies to