XmlSerializer::Deserialize Method (XmlReader^)
Deserializes the XML document contained by the specified XmlReader.
Assembly: System.Xml (in System.Xml.dll)
Parameters
- xmlReader
-
Type:
System.Xml::XmlReader^
The XmlReader that contains the XML document to deserialize.
| Exception | Condition |
|---|---|
| InvalidOperationException | An error occurred during deserialization. The original exception is available using the InnerException property. |
Deserialization is the process of reading an instance of an XML document and constructing an object that is strongly typed to the XML Schema (XSD) of the document.
Before deserializing, an XmlSerializer must be constructed using the type of the object that is being deserialized.
The XmlReader automatically detects and uses the encoding specified by the XML document.
Note |
|---|
The XmlSerializer cannot deserialize the following: arrays of ArrayList and arrays of List<T>. |
The following example deserializes an object using an XmlReader.
#using <System.Xml.dll> #using <System.dll> using namespace System; using namespace System::IO; using namespace System::Text; using namespace System::Xml; using namespace System::Xml::Serialization; // This is the class that will be deserialized. public ref class OrderedItem { public: String^ ItemName; String^ Description; Decimal UnitPrice; int Quantity; Decimal LineTotal; // A custom method used to calculate price per item. void Calculate() { LineTotal = UnitPrice * Quantity; } }; void DeserializeObject( String^ filename ) { Console::WriteLine( "Reading with XmlReader" ); // Create an instance of the XmlSerializer specifying type and namespace. XmlSerializer^ serializer = gcnew XmlSerializer( OrderedItem::typeid ); // A FileStream is needed to read the XML document. FileStream^ fs = gcnew FileStream( filename,FileMode::Open ); XmlReader^ reader = gcnew XmlTextReader( fs ); // Declare an object variable of the type to be deserialized. OrderedItem^ i; // Use the Deserialize method to restore the object's state. i = dynamic_cast<OrderedItem^>(serializer->Deserialize( reader )); // Write out the properties of the object. Console::Write( "{0}\t{1}\t{2}\t{3}\t{4}", i->ItemName, i->Description, i->UnitPrice, i->Quantity, i->LineTotal ); } int main() { // Read a purchase order. DeserializeObject( "simple.xml" ); }
<?xml version="1.0"?> <OrderedItem xmlns:inventory="http://www.cpandl.com" xmlns:money="http://www.cohowinery.com"> <inventory:ItemName>Widget</inventory:ItemName> <inventory:Description>Regular Widget</inventory:Description> <money:UnitPrice>2.3</money:UnitPrice> <inventory:Quantity>10</inventory:Quantity> <money:LineTotal>23</money:LineTotal> </OrderedItem>
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
XmlAttributes
CanDeserialize
Serialize
Deserialize Overload
XmlSerializer Class
System.Xml.Serialization Namespace
Introducing XML Serialization
How to: Specify an Alternate Element Name for an XML Stream
Controlling XML Serialization Using Attributes
Examples of XML Serialization
XML Schema Definition Tool (Xsd.exe)
