c#中枚举的xml序列化

时间:2012-05-16 09:04:13

标签: c# xml-serialization

那里。 我有以下类定义:

[Serializable]
public enum FilterType
{
    [XmlEnum("1")]
    Text = 1,
     [XmlEnum("2")]
    Date = 2,
     [XmlEnum("3")]
    Combo = 3,
     [XmlEnum("4")]
    Multichoice = 4
}

public class FilterValues : List<string>
{
    public FilterType Type { get; set; } 
}

[Serializable]
public struct SerializableKeyValuePair<K, V>
{
    public SerializableKeyValuePair(KeyValuePair<K, V> p)
    {
        this.key = p.Key;
        this.value = p.Value;
    }

    private K key;
    public K Key
    {
        get { return key; }
        set { key = value; }
    }

    private V value;
    public V Value
    {
        get { return this.value; }
        set { this.value = value; }
    }
}

当我尝试序列化时,我不能让它在xml中序列化Type属性 SerializableKeyValuePair的数组,其键为string类型,值类型为FilterValues(SerializableKeyValuePair<string, FilterValues>[])。 我得到了这个结果:

<?xml version="1.0" encoding="utf-16"?>  
<ArrayOfSerializableKeyValuePairOfStringFilterValues xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">    
<SerializableKeyValuePairOfStringFilterValues>      
<Key>Date</Key>     
 <Value>        <string>2012-5-16</string>      </Value>    
 </SerializableKeyValuePairOfStringFilterValues>    
 <SerializableKeyValuePairOfStringFilterValues>      
 <Key>bgName</Key>      <Value>        <string>4</string>      </Value>    
 </SerializableKeyValuePairOfStringFilterValues>  
 </ArrayOfSerializableKeyValuePairOfStringFilterValues>

请帮助,我尽了一切可能。

1 个答案:

答案 0 :(得分:1)

与此问题有关:When a class is inherited from List<>, XmlSerializer doesn't serialize other attributes

因此,正如在回答该问题时指出的那样,您必须以至少三种可能的方式之一更改FilterValues实现:

-implement IXmlSerializable
-remove inheritance from List
-use another serializer