NetDataContractSerializer::ReadObject Method (XmlDictionaryReader^, Boolean)
Reads the XML stream or document with an XmlDictionaryReader and returns the deserialized object; also checks whether the object data conforms to the name and namespace used to create the serializer.
Assembly: System.Runtime.Serialization (in System.Runtime.Serialization.dll)
public: virtual Object^ ReadObject( XmlDictionaryReader^ reader, bool verifyObjectName ) override
Parameters
- reader
-
Type:
System.Xml::XmlDictionaryReader^
The XmlDictionaryReader used to read the XML stream or document.
- verifyObjectName
-
Type:
System::Boolean
true to check whether the enclosing XML element name and namespace correspond to the root name and root namespace used to construct the serializer; false to skip the verification.
| Exception | Condition |
|---|---|
| ArgumentNullException | the reader is set to null. |
The verifyObjectName parameter determines whether it can read an object by examining the name and namespace of the XML element the reader is positioned at, and comparing the values to expected name and namespace. The expected name and namespace can be set with the following: the data contract name and namespace of the type passed into the constructor, or the rootName and rootNamespace values passed into the constructor (if present).
You can set the rootName and rootNamespace in the following constructors: NetDataContractSerializer(String^, String^), NetDataContractSerializer(XmlDictionaryString^, XmlDictionaryString^), and NetDataContractSerializer(XmlDictionaryString^, XmlDictionaryString^, StreamingContext, Int32, Boolean, FormatterAssemblyStyle, ISurrogateSelector^).
Security Note
|
|---|
Calling this method with untrusted data is a security risk. Call this method only with trusted data. For more information, see Untrusted Data Security Risks. |
Available since 3.0
