1

我对如何将 xmlns 设置为第一个属性感到非常困惑,我使用下面的代码生成了一个 xml 文件

XNamespace ns = "http://www.openarchives.org/OAI/2.0/";
XNamespace xsiNs = "http://www.w3.org/2001/XMLSchema-instance";
XDocument xDoc = new XDocument(
new XDeclaration("1.0", "UTF-8", "no"),
new XElement(ns + "gpx",
    new XAttribute(XNamespace.Xmlns + "xsi", xsiNs),
    new XAttribute(xsiNs + "schemaLocation",
        "http://www.openarchives.org/OAI/2.0/ http://www.openarchives.org/OAI/2.0/OAI-PMH.xsd"),
));

然而,结果总是

<?xml version="1.0" encoding="UTF-8"?>
<gpx 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.openarchives.org/OAI/2.0/ http://
www.openarchives.org/OAI/2.0/OAI-PMH.xsd"
xmlns="http://www.openarchives.org/OAI/2.0/">

我的意思是我想要 xmlns="http://www.openarchives.org/OAI/2.0/" 一开始。所以当我调用 xElement.FirstAttribute 时,它​​应该是 xmlns 而不是 xmlns:xsi,知道吗?

4

1 回答 1

0

通过将其添加为元素中的第一个属性来手动设置它:

new XElement(ns + "gpx",
    new XAttribute("xmlns", ns.NamespaceName), // add it here
    new XAttribute(XNamespace.Xmlns + "xsi", xsiNs),
    new XAttribute(xsiNs + "schemaLocation",
        "http://www.openarchives.org/OAI/2.0/ http://www.openarchives.org/OAI/2.0/OAI-PMH.xsd"),
)
于 2013-06-28T13:52:46.493 回答