.net 中的 XML 序列化

发布于 2024-11-07 20:57:43 字数 400 浏览 0 评论 0原文

我正在尝试序列化一个对象以满足另一个系统的要求。

它需要看起来像这样:

<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 技术交流群。

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

发布评论

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

评论(1

べ映画 2024-11-14 20:57:43

您可以实现IXmlSerialized

public class Root
{
    [XmlElement("custom-attribute")]
    public Colour Colour { get; set; }
}

public class Colour : IXmlSerializable
{
    [XmlText]
    public string Value { get; set; }

    public XmlSchema GetSchema()
    {
        return null;
    }

    public void ReadXml(XmlReader reader)
    {
        throw new NotImplementedException();
    }

    public void WriteXml(XmlWriter writer)
    {
        writer.WriteAttributeString("dt:dt", "", "string");
        writer.WriteAttributeString("name", "Colour");
        writer.WriteString(Value);
    }
}

class Program
{
    static void Main()
    {
        var serializer = new XmlSerializer(typeof(Root));
        var root = new Root
        {
            Colour = new Colour
            {
                Value = "blue"
            }
        };
        serializer.Serialize(Console.Out, root);
    }
}

You could implement IXmlSerializable:

public class Root
{
    [XmlElement("custom-attribute")]
    public Colour Colour { get; set; }
}

public class Colour : IXmlSerializable
{
    [XmlText]
    public string Value { get; set; }

    public XmlSchema GetSchema()
    {
        return null;
    }

    public void ReadXml(XmlReader reader)
    {
        throw new NotImplementedException();
    }

    public void WriteXml(XmlWriter writer)
    {
        writer.WriteAttributeString("dt:dt", "", "string");
        writer.WriteAttributeString("name", "Colour");
        writer.WriteString(Value);
    }
}

class Program
{
    static void Main()
    {
        var serializer = new XmlSerializer(typeof(Root));
        var root = new Root
        {
            Colour = new Colour
            {
                Value = "blue"
            }
        };
        serializer.Serialize(Console.Out, root);
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文