使用 MvcContrib 的 XmlResult 时 xml 元素名称小写
我有一个这样的类,
public class Reply
{
public string Result { get; set; }
public int Code { get; set; }
public string Description { get; set; }
}
当我将它用作 XmlResult 构造函数的参数时,我得到一个输出,其中 xml 元素名称的第一个字母是大写的。但我需要它们是纯小写的。也许我怀念某种属性?不幸的是,我没有找到任何关于 XmlResult 的文档。
I've got a class like this
public class Reply
{
public string Result { get; set; }
public int Code { get; set; }
public string Description { get; set; }
}
When I use it as a param to XmlResult constructor, I get an output where xml element names first letters are uppercase. But I need them to be plain lowercase. Perhaps there is some sort of attribute which I miss? Unfortunately, I haven't found any documentation on XmlResult.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于序列化,您可以
添加:或
分别为 XML 元素和属性 。希望这能满足您的需要。
更新:您的课程应该类似于:
For serializing you add either:
or
for XML Elements and Attributes respectively. Hopefully this works for what you need.
Update: Your class should be something like: