System::Xml::Serialization::XmlSerializer::Deserialize method

XmlSerializer::Deserialize(System::SharedPtr<IO::Stream>) method

Deserializes XML document into object.

System::SharedPtr<Object> System::Xml::Serialization::XmlSerializer::Deserialize(System::SharedPtr<IO::Stream> stream)
ParameterTypeDescription
streamSystem::SharedPtr<IO::Stream>Stream to read document from.

ReturnValue

Object that was previously serialized into the document given.

See Also

XmlSerializer::Deserialize(System::SharedPtr<IO::TextReader>) method

Deserializes XML document into object.

System::SharedPtr<Object> System::Xml::Serialization::XmlSerializer::Deserialize(System::SharedPtr<IO::TextReader> textReader)
ParameterTypeDescription
textReaderSystem::SharedPtr<IO::TextReader>Reader to read document from.

ReturnValue

Object that was previously serialized into the document given.

See Also

XmlSerializer::Deserialize(System::SharedPtr<XmlReader>) method

Deserializes XML document into object.

System::SharedPtr<Object> System::Xml::Serialization::XmlSerializer::Deserialize(System::SharedPtr<XmlReader> xmlReader)
ParameterTypeDescription
xmlReaderSystem::SharedPtr<XmlReader>Reader to read document from.

ReturnValue

Object that was previously serialized into the document given.

See Also

XmlSerializer::Deserialize(System::SharedPtr<XmlReader>, String) method

Deserializes XML document into object.

System::SharedPtr<Object> System::Xml::Serialization::XmlSerializer::Deserialize(System::SharedPtr<XmlReader> xmlReader, String encodingStyle)
ParameterTypeDescription
xmlReaderSystem::SharedPtr<XmlReader>Reader to read document from.
encodingStyleStringStyle used to serialize object.

ReturnValue

Object that was previously serialized into the document given.

See Also