Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is it possible to get RestSharp to deserialize this Xml snippet, into a single class, instead of two classes?

<shippingInfo>
    <shippingServiceCost currencyId="AUD">58.02</shippingServiceCost>
    <shippingType>Flat</shippingType>
    <shipToLocations>Worldwide</shipToLocations>
</shippingInfo>

Notice the first element shippingServiceCost ? it has an attribute there. Normally, I would just create a child class called ShippingServiceCost and add two properties in there: CurrentId and Value.

But it it possible to have the CurrencyId value in a property, in the main class ShippingInfo ?

share|improve this question

1 Answer

The way I would do it, could be:

  1. crafting a small XSLT file that does what you want to transform the orginal xml to the new structure
  2. extend the default RestSharp XmlSerializer to apply the XSLT transformation after the normal serialization output
  3. register the new XmlSerializer to the restsharp client
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.