XmlTypeMapping Class

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Contains a mapping of one type to another.

Inheritance Hierarchy

System..::.Object
  System.Xml.Serialization..::.XmlMapping
    System.Xml.Serialization..::.XmlTypeMapping

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

Syntax

Public Class XmlTypeMapping _
    Inherits XmlMapping
public class XmlTypeMapping : XmlMapping

The XmlTypeMapping type exposes the following members.

Properties

  Name Description
ElementName Get the name of the mapped element. (Inherited from XmlMapping.)
Namespace Gets the namespace of the mapped element. (Inherited from XmlMapping.)
TypeFullName The fully qualified type name that includes the namespace (or namespaces) and type.
TypeName Gets the type name of the mapped object.
XsdElementName Gets the name of the XSD element of the mapping. (Inherited from XmlMapping.)
XsdTypeName Gets the XML element name of the mapped object.
XsdTypeNamespace Gets the XML namespace of the mapped object.

Top

Methods

  Name Description
Equals(Object) Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Finalize Allows an object to try to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection. (Inherited from Object.)
GetHashCode Serves as a hash function for a particular type. (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.)
SetKey Sets the key used to look up the mapping. (Inherited from XmlMapping.)
ToString Returns a string that represents the current object. (Inherited from Object.)

Top

Remarks

The XmlTypeMapping class is used to serialize an object as encoded SOAP XML. The resulting XML conforms to section 5 of the World Wide Web Consortium (www.w3.org) document, "Simple Object Access Protocol (SOAP) 1.1". Create an XmlTypeMapping by calling the ImportTypeMapping method of the XmlReflectionImporterclass. Use the XmlTypeMapping to construct an instance of the XmlSerializer class.

Version Information

Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Platforms

Windows Phone

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Reference

System.Xml.Serialization Namespace