使用XmlSerializer反序列化具有额外属性的列表

时间:2013-02-15 15:10:54

标签: c# xml-serialization

我想反序列化以下XML ...

<MyType>
    <Items>
        <ItemSum>
            <Value>3</Value>
        </ItemSum>
        <Item>
            <Value>1</Value>
        </Item>
        <Item>
            <Value>2</Value>
        </Item>
    </Items>
</MyType>

...成为一种以下结构...

[XmlRoot("MyType")]
public class MyType
{
    [XmlArray("Items")]
    [XmlArrayItem("Item")]
    public CItems Items { get; set; }

    public class CItems : List<CItem>
    {
        [XmlElement("ItemSum")]
        public CItem ItemSum { get; set; }
    }

    public class CItem
    {
        [XmlElement("Value")]
        public int Value { get; set; }
    }
}

但是,如果我使用C#的XmlSerializer尝试,ItemSum属性始终为null。我有什么想法吗?

1 个答案:

答案 0 :(得分:2)

这是:

public class MyType
{
    [XmlArray("Items")]
    [XmlArrayItem("ItemSum", typeof(ItemSum))]
    [XmlArrayItem("Item", typeof(SimpleItem))]
    public CItems Items { get; set; }

    public class CItems : List<Item> {}

    public class ItemSum : Item {}

    public class SimpleItem : Item {}

    public class Item
    {
        public int Value { get; set; }
    }
}

这样ItemSum是列表的一个元素,您可以通过检查其类型来了解它。

编辑:您还可以使用计算属性:

public class CItems : List<Item>
{
    [XmlIgnore]
    public ItemSum ItemSum
    {
        get { return this.OfType<ItemSum>().Single(); }
    }

    [XmlIgnore]
    public IEnumerable<SimpleItem> SimpleItems
    {
        get { return this.OfType<SimpleItem>(); }
    }
}