为XML序列化命名List <t>元素

时间:2015-05-25 04:37:44

标签: c# .net xml serialization

我试图将类序列化为XML,但我无法获得我想要的属性只是List的子元素的结果。 (C#,。Net4.5,在WinForms中尝试)

我的例子如下:

[Serializable]
public class Model
{
    public string element = "elTest";
    public List<String> roles;
}

我写的是XML

    private void button2_Click(object sender, EventArgs e)
    {
        var me = new Model();
        me.roles = new List<string>()
        {
            "testString"
        };
        var ser = new XmlSerializer(typeof(OtherModel));
        using (var sw = new StreamWriter("C:\\temp\\test123.xml"))
        {
            ser.Serialize(sw, me);
        }
    }

这给了我输出:

 <element>elTest</element>
  <roles>
    <string>testString</string>
  </roles>

我如何得到它

<string>
此示例中的

显示为

<role>

我尝试创建另一个类角色,使用自己的属性创建一个List,但后来我得到了类似

的内容
  <roles>
    <Role>
      <myRole>theRole</myRole>

这不是我想要的。

感谢。

2 个答案:

答案 0 :(得分:3)

需要使用属性XmlArrayItem

https://msdn.microsoft.com/en-us/library/vstudio/2baksw0z(v=vs.100).aspx

[Serializable]
public class Model
    {
        public string element = "elTest";
        [XmlArrayItem("role")]
        public List<String> roles;
    }
    class Program
    {
        static void Main(string[] args)
        {
            var me = new Model();
            me.roles = new List<string>()
        {
            "testString"
        };
            var ser = new XmlSerializer(me.GetType());
            using (var sw = new StreamWriter("0.xml"))
            {
                ser.Serialize(sw, me);
            }

            Console.ReadKey(true);
        }
}

另存为:

<?xml version="1.0" encoding="utf-8"?>
<Model xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <element>elTest</element>
  <roles>
    <role>testString</role>
  </roles>
</Model>

答案 1 :(得分:0)

完全XmlArrayItem解决了您的问题。