vote up 0 vote down star
1

Hi,

Here's an example program showing what I'm trying to do:

http://pastebin.com/m1de1f3ba

The XML in the 'xml' string describes a list of items. The PersonI2 type should be considered as extending the Person type, and therefore I want the XmlSerializer to deserialize the PersonI2 entries in the XML as PersonI2 objects... instead, the XmlSerializer throws an exception. Why, and how can I fix it?

flag

2  
Any reason you can't paste the example code in Stackoverflow? – serg10 Sep 25 at 13:03
Because it's massively long? – Jez Sep 25 at 14:03
It's not that long, you should paste the code example inline in your question. – Wedge Sep 25 at 14:47
Isn't this question a duplicate of stackoverflow.com/questions/1477533/…? – John Saunders Sep 25 at 22:09

1 Answer

vote up 1 vote down check

Add the XmlInclude attribute to the Person class, to make the XmlSerializer aware of the PersonI2 class :

    [XmlType(AnonymousType = true, TypeName = "Person", Namespace = "")]
    [XmlInclude(typeof(PersonI2))]
    public class Person {
    ...
link|flag
That doesn't work. You then get an InvalidaOperationException "Cannot include anonymous type 'XmlTester1.PersonI2'". – Chris Arnold Sep 25 at 13:09
Also, I don't still don't know why this doesn't work but giving a base class (Person) knowledge of an extending class (PersonI2) feels wrong. – Chris Arnold Sep 25 at 13:16
Actually, this does work if I also then make the AnonymousType's = false. Thanks, Thomas! – Jez Sep 25 at 13:37

Your Answer

Get an OpenID
or

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