vote up 0 vote down star

Assume I have a C# class like this:

[XmlRoot("floors")]
public class FloorCollection
{
    [XmlElement("floor")]
    public Floor[] Floors { get; set; }

}

And I want to serialize it and send to a REST API using WCF. But before sending I need adding an attribute to the floors node in this way: <floors type="array">...</floors>

Any idea?

flag

50% accept rate

2 Answers

vote up 3 vote down check

Just add the type attribute into your collection class:

[XmlRoot("floors")]
public class FloorCollection
{
    [XmlAttribute("type")]
    public string Type { get; set; }
    [XmlElement("floor")]
    public Floor[] Floors { get; set; }

}
link|flag
vote up 2 vote down

If you mean adding that without the business code knowing about it, then you'll probably have to use Message Inspectors to modify the message before it is sent.

link|flag

Your Answer

Get an OpenID
or

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