DataContract XML serialization and XML attributes DataContract XML serialization and XML attributes xml xml

DataContract XML serialization and XML attributes


This can be achieved, but you will have to override the default serializer by applying the [XmlSerializerFormat] attribute to the DataContract. Although it can be done, this does not perform as well as the default serializer, so use it with caution.

The following class structure will give you the result you are after:

using ...using System.Runtime.Serialization;using System.ServiceModel;using System.Xml.Serialization;[DataContract][XmlSerializerFormat]public class root{   public distance distance=new distance();}[DataContract]public class distance{  [DataMember, XmlAttribute]  public string units="m";  [DataMember, XmlText]  public int value=1000;}

You can test this with the following code:

root mc = new root();XmlSerializer ser = new XmlSerializer(typeof(root));StringWriter sw = new StringWriter();ser.Serialize(sw, mc);Console.WriteLine(sw.ToString());Console.ReadKey();

The output will be:

<?xml version="1.0" encoding="utf-16"?><root xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"                                   xmlns:xsd="http://www.w3.org/2001/XMLSchema">  <distance units="m">1000</distance></root>


The Data Contract Serializer used by default in WCF does not support XML attributes for performance reasons (the DCS is about 10% faster on average than the XML serializer).

So if you really want to use the DCS, you cannot use this structure you have - it would have to be changed.

Or you need to use the XmlSerializer with WCF, as Greg showed in his answer - that works, too, but you lose the performance benefit (plus all other benefits) of the DCS.