自定义类型为 XMLAttribute

发布于 2024-11-02 01:45:54 字数 475 浏览 3 评论 0原文

我有一个自定义的 struct 类型,支持与 string 之间的隐式转换。我可以将此结构序列化为元素,而在公共属性上使用 XmlText 属性不会出现任何问题。

struct Test
{
    [XmlText]
    public string Value {get(...);set(...);}
}

class Other
{
    [XmlElement] // this renders as <TestElement>value</TestElement>
    public Test TestElement {get; set;} 

    [XmlAttribute] // this fails at runtime
    public Test TestElement {get; set;} 
}

但是,我无法将其序列化为属性。有办法让它发挥作用吗?

I have a custom struct type that supports implicit conversion to and from string. I can serialize this struct as an element without any problems with the using the XmlText attribute on a public property.

struct Test
{
    [XmlText]
    public string Value {get(...);set(...);}
}

class Other
{
    [XmlElement] // this renders as <TestElement>value</TestElement>
    public Test TestElement {get; set;} 

    [XmlAttribute] // this fails at runtime
    public Test TestElement {get; set;} 
}

However, I cannot serialize it as an attribute. Is there anyway to make it work?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

毁梦 2024-11-09 01:45:54

[XmlText] 表示将数据序列化为元素的文本值。它不能用于属性。

[XmlText] means to serialize the data as the text value of an element. It cannot be used for an attribute.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文