This topic has not yet been rated - Rate this topic

DataContractSerializer.ReadObject Method (XmlReader, Boolean)

Reads the XML stream with an XmlReader and returns the deserialized object, and also specifies whether a check is made to verify the object name before reading its value.

Namespace:  System.Runtime.Serialization
Assembly:  System.Runtime.Serialization (in System.Runtime.Serialization.dll)
public override Object ReadObject(
	XmlReader reader,
	bool verifyObjectName
)

Parameters

reader
Type: System.Xml.XmlReader

The XmlReader used to read the XML stream.

verifyObjectName
Type: System.Boolean

true to check whether the name of the object corresponds to the root name value supplied in the constructor; otherwise, false.

Return Value

Type: System.Object
The deserialized object.
ExceptionCondition
SerializationException

The verifyObjectName parameter is set to true, and the element name and namespace do not correspond to the values set in the constructor.

Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.5, 3.0
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.