XmlSerializer::Deserialize Method (XmlReader^, String^)
Deserializes the XML document contained by the specified XmlReader and encoding style.
Assembly: System.Xml (in System.Xml.dll)
Parameters
- xmlReader
-
Type:
System.Xml::XmlReader^
The XmlReader that contains the XML document to deserialize.
- encodingStyle
-
Type:
System::String^
The encoding style of the serialized XML.
| Exception | Condition |
|---|---|
| InvalidOperationException | An error occurred during deserialization. The original exception is available using the InnerException property. |
Deserialization is the process of reading an instance of an XML document and constructing an object that is strongly typed to the XML Schema (XSD) of the document.
Before deserializing, an XmlSerializer must be constructed using the type of the object that is being deserialized.
Set the encodingStyle parameter to "http://schemas.xmlsoap.org/soap/encoding/ " for SOAP version 1.1 encoding; otherwise, set it to "http://www.w3.org/2001/12/soap-encoding" for SOAP version 1.2 encoding.
Note The XmlSerializer cannot deserialize the following: arrays of ArrayList and arrays of List<T>.
Available since 2.0
XmlAttributes
CanDeserialize
Serialize
Deserialize Overload
XmlSerializer Class
System.Xml.Serialization Namespace
Introducing XML Serialization
How to: Specify an Alternate Element Name for an XML Stream
Controlling XML Serialization Using Attributes
Examples of XML Serialization
XML Schema Definition Tool (Xsd.exe)