XmlObjectSerializer.ReadObject Method (XmlDictionaryReader, Boolean)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
When implemented in a derived class, reads the XML stream or document with an XmlDictionaryReader and returns the deserialized object.
Assembly: System.Runtime.Serialization (in System.Runtime.Serialization.dll)
'Declaration Public MustOverride Function ReadObject ( _ reader As XmlDictionaryReader, _ verifyObjectName As Boolean _ ) As Object
Parameters
- reader
- Type: System.Xml.XmlDictionaryReader
An XmlDictionaryReader used to read the XML document.
- verifyObjectName
- Type: System.Boolean
true to check whether the enclosing XML element name and namespace correspond to the root name and root namespace; otherwise, 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: