如何使用特定命名空间创建XElement?

时间:2012-08-21 07:24:13

标签: c# .net xml linq-to-xml

我在LinqToXml中创建新元素时遇到问题。 这是我的代码:

XNamespace xNam = "name"; 
XNamespace _schemaInstanceNamespace = @"http://www.w3.org/2001/XMLSchema-instance";

XElement orderElement = new XElement(xNam + "Example",
                  new XAttribute(XNamespace.Xmlns + "xsi", _schemaInstanceNamespace));

我想得到这个:

<name:Example xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

但是在XML中我总是这样:

<Example xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="name">

我做错了什么?

1 个答案:

答案 0 :(得分:11)

由于未声明前缀<name:Example xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

name的命名空间格式不正确。因此,使用XML API构建它是不可能的。您可以做的是构造以下命名空间格式良好的XML

<name:Example xmlns:name="http://example.com/name" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" />

代码

        //<name:Example xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:name="http://example.com/name"></name:Example>

        XNamespace name = "http://example.com/name";
        XNamespace xsi = "http://www.w3.org/2001/XMLSchema-instance";

        XElement example = new XElement(name + "Example",
            new XAttribute(XNamespace.Xmlns + "name", name),
            new XAttribute(XNamespace.Xmlns + "xsi", xsi));

        Console.WriteLine(example);