如何使用XmlSerializer生成标记前缀

时间:2010-05-11 12:16:31

标签: c# xmlserializer

我想使用XmlSerializer生成以下内容:

<atom:link href="http://dallas.example.com/rss.xml" rel="self" type="application/rss+xml" />

所以我尝试在我的元素中添加一个命名空间:

[...]

    [XmlElement("link", Namespace="atom")]
    public AtomLink AtomLink { get; set; }

[...]

但输出是:

<link xmlns="atom" href="http://dallas.example.com/rss.xml" rel="self" type="application/rss+xml" />

那么生成前缀标签的正确方法是什么?

2 个答案:

答案 0 :(得分:34)

首先,atom命名空间通常是这样的:

xmlns:atom="http://www.w3.org/2005/Atom"

为了让您的代码使用atom命名空间前缀,您需要使用它来标记您的属性:

[XmlElement("link", Namespace="http://www.w3.org/2005/Atom")]
public AtomLink AtomLink { get; set; }

您还需要告诉XmlSerializer使用它(感谢@Marc Gravell):

XmlSerializerNamespaces ns = new XmlSerializerNamespaces();
ns.Add("atom", "http://www.w3.org/2005/Atom");
XmlSerializer xser = new XmlSerializer(typeof(MyType));
xser.Serialize(Console.Out, new MyType(), ns);

答案 1 :(得分:0)