Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

DataContractJsonSerializer::ReadObject Method (XmlReader^, Boolean)

 

Reads an XML document mapped from JSON with an XmlReader and returns the deserialized object; it also enables you to specify whether the serializer should verify that it is positioned on an appropriate element before attempting to deserialize.

Namespace:   System.Runtime.Serialization.Json
Assembly:  System.Runtime.Serialization (in System.Runtime.Serialization.dll)

public:
virtual Object^ ReadObject(
	XmlReader^ reader,
	bool verifyObjectName
) override

Parameters

reader
Type: System.Xml::XmlReader^

An XmlReader used to read the XML document mapped from JSON.

verifyObjectName
Type: System::Boolean

true to check whether the enclosing XML element name and namespace correspond to the expected name and namespace; otherwise, false, which skips the verification. The default is true.

Return Value

Type: System::Object^

The deserialized object.

.NET Framework
Available since 3.5
Return to top
Show: