.net 中的 XML 序列化
我正在尝试序列化一个对象以满足另一个系统的要求。
它需要看起来像这样:
<custom-attribute name="Colour" dt:dt="string">blue</custom-attribute>
但实际上看起来像这样:
<custom-attribute>blue</custom-attribute>
到目前为止我有这个:
[XmlElement("custom-attribute")]
public String Colour{ get; set; }
我不太确定需要什么元数据来实现这一点。
I'm trying to serialize an object to meet another systems requirements.
It need to look like this:
<custom-attribute name="Colour" dt:dt="string">blue</custom-attribute>
but instead is looking like this:
<custom-attribute>blue</custom-attribute>
So far I have this:
[XmlElement("custom-attribute")]
public String Colour{ get; set; }
I'm not really sure what metadata I need to achieve this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以实现IXmlSerialized:
You could implement IXmlSerializable: