Is it possible to deserialise an inner xml element to its equivilant class? I've got the following xml fragment:
<?xml version="1.0" encoding="utf-8" ?>
<tileconfiguration xmlns="http://somenamespace/tile-configuration">
<tile top_left_x="3" top_left_y="1" bottom_right_x="38" bottom_right_y="48">
<child>
</child>
</tile>
</tileconfiguration>
and an equivalent class that represents the <tile /> element:
[System.Xml.Serialization.XmlRoot(ElementName = "tile")]
public class Tile : System.Xml.Serialization.IXmlSerializable
{
public System.Xml.Schema.XmlSchema GetSchema()
{
throw new NotImplementedException();
}
public void ReadXml(System.Xml.XmlReader reader)
{
throw new NotImplementedException();
}
public void WriteXml(System.Xml.XmlWriter writer)
{
throw new NotImplementedException();
}
}
The problem is, everytime I attempt to deserialize the instances of <tile /> within the <tile_configuration /> - the XML deserializer throws a Error in document (2,2).
System.Xml.Serialization.XmlSerializer serial = new System.Xml.Serialization.XmlSerializer(typeof(Tile));
System.IO.TextReader t = new System.IO.StreamReader("c:\\temp\\deserial.xml");
Tile q = (Tile)serial.Deserialize(t);
If I create a class to represent <tile_configuration /> and deserialise directly from that, it works fine and the debugger enters the ReadXml method on the TileConfiguration class from which I can then manage the parsing of the child <tile /> (and decendent) elements - but this requires a re-read of the entire xml file each time.
In a nutshell; am I required to read and write the entire XML file - starting from the root xml element everytime I want to make use of serialisation/deserialisation or is there a way to allow me to ignore extranous outer elements and directly deserialise pertinent child xml elements to their code equivilents without the parser chucking errors?
Much obliged.