System.Xml.Serialization.XmlSerializer.Deserialize Method

Deserializes the XML document contained by the specified System.xml.XmlReader and encoding style.

Syntax

public object Deserialize (System.Xml.XmlReader xmlReader, string encodingStyle)

Parameters

xmlReader
The System.xml.XmlReader that contains the XML document to deserialize.
encodingStyle
The encoding style of the serialized XML.

Returns

The deserialized object.

Remarks

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 System.Xml.Serialization.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 System.Xml.Serialization.XmlSerializer cannot deserialize the following: arrays of ArrayList and arrays of List`1.

Requirements

Namespace: System.Xml.Serialization
Assembly: System.Xml (in System.Xml.dll)
Assembly Versions: 2.0.0.0, 4.0.0.0
Since: .NET 2.0