XmlObjectSerializer.ReadObject Method (XmlReader, Boolean)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Reads the XML document or stream with an XmlReader and returns the deserialized object. It also enables you to specify whether the serializer can read the data before attempting to read it.
Assembly: System.Runtime.Serialization (in System.Runtime.Serialization.dll)
Parameters
- reader
- Type: System.Xml.XmlReader
An XmlReader used to read the XML document or stream.
- verifyObjectName
- Type: System.Boolean
true to check whether the enclosing XML element name and namespace correspond to the root name and root namespace; false to skip the verification.
The verifyObjectName parameter uses the same code as the IsStartObject method to determine whether the element is the start of the object.
Show: