我曾多次尝试将默认命名空间添加到根,尽管它也将命名空间添加到它的子节点。我想将命名空间添加到现有的 XDocument。
我的代码尝试;
// add default namespace - attempt 1
XNamespace xmlns = "http://www.myschema/schema.xsd";
xDocument.Root.Name = xmlns + xDocument.Root.Name.LocalName;
// add default namespace - attempt 2
XNamespace MyNS = "http://www.myschema/schema.xsd";
xDocument.Element("testFile").Name = MyNS.GetName("testFile");
XML;
<testFile version="1" xmlns="http://www.myschema/schema.xsd">
<testResults xmlns=""> <!-- *** Unwanted Attribute *** -->
<result resultID="abcdefgh" comment="blah blah blah blah">
</testResults>
</testFile>
我想知道为什么 testResults 附加了一个 xmlns 命名空间属性?
这是一些要测试的测试 C# 代码;
XDocument xDocument = new XDocument(
new XElement("testFile",
new XAttribute("version", "1"),
new XElement("testResults",
new XElement("result",
new XAttribute("resultID", "abcdefgh"),
new XAttribute("comment", "blah blah blah blah")
))));