XmlSchemaExporter Class

Definition

Populates XmlSchema objects with XML schema element declarations that are found in type mapping objects.

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

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

Remarks

The XmlSchemaExporter class provides a programmatic representation of an XML Schema Definition language (XSD) document. Instead of using XmlSchemaExporter directly, use the ServiceDescriptionReflector class or the XML Schema Definition Tool (Xsd.exe).

The ServiceDescriptionReflector class creates ServiceDescription objects from classes that are identified as Web services. It uses the XmlSchemaExporter class when a Web service class specifies:

  • Literal use, indicating 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.

Xsd.exe generates XML schema documents from one or more types in a run-time assembly file using the XmlSchemaExporter class and reflection.

Constructors

XmlSchemaExporter(XmlSchemas)

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

Initializes a new instance of the XmlSchemaExporter class.

Methods

Equals(Object)

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

(Inherited from Object)
ExportAnyType(String)

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

Exports an <any> element to the XmlSchema object that is identified by the specified namespace.

ExportAnyType(XmlMembersMapping)

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

Adds an element declaration for an object or type to a SOAP message or to an XmlSchema object.

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.

ExportTypeMapping(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 object for a single element part of a literal SOAP message definition.

ExportTypeMapping(XmlTypeMapping)

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

Adds an element declaration for a .NET type to the applicable XmlSchema object.

GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetType()

Gets the Type of the current instance.

(Inherited from Object)
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

See also