Is it possible to deserialize this XML into an object marked with the DataContract attribute?
<root>
<distance units="m">1000</distance>
</root>
As you may see there is "units" attribute. I don't believe that's supported. Or am I wrong?
|
Is it possible to deserialize this XML into an object marked with the DataContract attribute?
As you may see there is "units" attribute. I don't believe that's supported. Or am I wrong? |
|||
|
|
|
This can be achieved, but you will have to override the default serializer by applying the The following class structure will give you the result you are after (although it will also include namespaces):
You can test this with the following code:
The output will be:
|
|||||||||
|
|
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 - you would have to change it. Or you need to use the XmlSerializer with WCF, as Greg showed in his answer - that works, too, but you loose the performance benefit (plus all other benefits) of the DCS. |
|||
|
|