想在类上使用XmlElement属性?

时间:2013-03-14 00:15:42

标签: asp.net xml serialization

我有以下课程:

[XmlElement("email-address")]
    public class EmailAddress
    {
        public string address { get; set; }
        public string location { get; set; }
    }

这里的XmlElement属性有效,但我确实想要这种行为 - 这可能吗?要将此类的名称以XML格式序列化为email-address而不是EmailAddress

1 个答案:

答案 0 :(得分:5)

如果您想要更改类的序列化方式,我认为您正在寻找XmlTypeAttribute