Deserializing XML to Objects in C#

C#.NetSerialization

C# Problem Overview


So I have xml that looks like this:

<todo-list>
  <id type="integer">#{id}</id>
  <name>#{name}</name>
  <description>#{description}</description>
  <project-id type="integer">#{project_id}</project-id>
  <milestone-id type="integer">#{milestone_id}</milestone-id>
  <position type="integer">#{position}</position>

  <!-- if user can see private lists -->
  <private type="boolean">#{private}</private>

  <!-- if the account supports time tracking -->
  <tracked type="boolean">#{tracked}</tracked>

  <!-- if todo-items are included in the response -->
  <todo-items type="array">
    <todo-item>
      ...
    </todo-item>
    <todo-item>
      ...
    </todo-item>
    ...
  </todo-items>
</todo-list>

How would I go about using .NET's serialization library to deserialize this into C# objects?

Currently I'm using reflection and I map between the xml and my objects using the naming conventions.

C# Solutions


Solution 1 - C#

Create a class for each element that has a property for each element and a List or Array of objects (use the created one) for each child element. Then call System.Xml.Serialization.XmlSerializer.Deserialize on the string and cast the result as your object. Use the System.Xml.Serialization attributes to make adjustments, like to map the element to your ToDoList class, use the XmlElement("todo-list") attribute.

A shourtcut is to load your XML into Visual Studio, click the "Infer Schema" button and run "xsd.exe /c schema.xsd" to generate the classes. xsd.exe is in the tools folder. Then go through the generated code and make adjustments, such as changing shorts to ints where appropriate.

Solution 2 - C#

[1]: http://blog.stevehorn.cc/2007/07/generate-code-from-xml-schema-xsdexe.html "Instructions Here" Boils down to using xsd.exe from tools in VS:

xsd.exe "%xsdFile%" /c /out:"%outDirectory%" /l:"%language%"

Then load it with reader and deserializer:

public GeneratedClassFromXSD GetObjectFromXML()
{
    var settings = new XmlReaderSettings();
    var obj = new GeneratedClassFromXSD();
    var reader = XmlReader.Create(urlToService, settings);
    var serializer = new System.Xml.Serialization.XmlSerializer(typeof(GeneratedClassFromXSD));
    obj = (GeneratedClassFromXSD)serializer.Deserialize(reader);
 
    reader.Close();
    return obj;
}

Solution 3 - C#

Deserialize any object, as long as the type T is marked Serializable:

function T Deserialize<T>(string serializedResults)
{
    var serializer = new XmlSerializer(typeof(T));
    using (var stringReader = new StringReader(serializedResults))
        return (T)serializer.Deserialize(stringReader);
}

Solution 4 - C#

Well, you'd have to have classes in your assembly that match, roughly, the XML (property called Private, a collection property called ToDo, etc).

The problem is that the XML has elements that are invalid for class names. So you'd have to implement IXmlSerializable in these classes to control how they are serialized to and from XML. You might be able to get away with using some of the xml serialization specific attributes as well, but that depends on your xml's schema.

That's a step above using reflection, but it might not be exactly what you're hoping for.

Solution 5 - C#

Checkout http://xsd2code.codeplex.com/

Xsd2Code is a CSharp or Visual Basic Business Entity class Generator from XSD schema.

Solution 6 - C#

There are a couple different options.

  • Visual Studio includes a command line program called xsd.exe. You use that program to create a schema document, and use the program again on the schema document to creates classes you can use with system.xml.serialization.xmlserializer
  • You might just be able to call Dataset.ReadXml() on it.

Solution 7 - C#

i had the same questions few years back that how abt mapping xml to C# classes or creating C# classes which are mapped to our XMLs, jst like we do in entity Framework (we map tables to C# classes). I created a framework finally, which can create C# classes out of your XML and these classes can be used to read/write your xml. Have a look

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionJustin BozonierView Question on Stackoverflow
Solution 1 - C#Dan GoldsteinView Answer on Stackoverflow
Solution 2 - C#Steve HornView Answer on Stackoverflow
Solution 3 - C#KeithView Answer on Stackoverflow
Solution 4 - C#user1228View Answer on Stackoverflow
Solution 5 - C#DeepfreezedView Answer on Stackoverflow
Solution 6 - C#Joel CoehoornView Answer on Stackoverflow
Solution 7 - C#SavaratkarView Answer on Stackoverflow