vote up 0 vote down star

Hi, so I'm serializing an object that contains a List<Object> property, and it serializes it like this:

<Explorer xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <Name>Explorer1</Name>
  <Items>
    <anyType xsi:type="FolderObject">
      <Name>Folder1</Name>
      <Items>
        <anyType xsi:type="MyObject">
          <Name>Object 1</Name>
        </anyType>
      </Items>
    </anyType>
    <anyType xsi:type="MyObject">
      <Name>Object 2</Name>
    </anyType>
  </Items>
</Explorer>

So what I want to do is replace the anyType node with some other name. Is that possible?

Thanks.

flag

You'd probably need to elaborate on "possible" the result of XMl serialization is a XML element which is basically just a string and string manipulation is possible but I guess that's not what you mean by "possible" if the question is can I change the node name and still make deserialization work the answer is still yes but you'd probably need to supply your own deserializer – Rune FS Nov 5 at 19:12
Hmm yeah I want to avoid creating my own deserializer. I was just thinking of using something like XmlAttribute("OtherName"), that didn't work btw, but something similar. – Carlo Nov 5 at 19:15

2 Answers

vote up 0 vote down

Have you the the XmlElement attribute on the class?

link|flag
vote up 0 vote down

As Jeremy pointed out:

[XmlElement("ObjectList ")]
public List<Object> ObjectList {get;set;}

Edit: actually, you might want to try:

[XmlArray("ObjectList"), XmlArrayItem("ObjectItem", typeof(ObjectItem))]
public List<Object> ObjectList {get;set;}
link|flag

Your Answer

Get an OpenID
or

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