XElement 命名空间(如何?)

如何创建带有节点前缀的 xml 文档,如:

<sphinx:docset>
<sphinx:schema>
<sphinx:field name="subject"/>
<sphinx:field name="content"/>
<sphinx:attr name="published" type="timestamp"/>
</sphinx:schema>

当我尝试运行像 new XElement("sphinx:docset")这样的程序时,我会得到异常

未处理的异常: System.Xml.XmlException: “ :”字符,十六进制 val Ue0x3A,不能包含在名称中。
在 System.Xml.XmlConvert.VerifyNCName (字符串名称,ExceptionType 异常类型 E)
在 System.Xml.Linq.XName. . ctor (XNamespace ns,String localName)
在 System.Xml.Linq.XNamespace. GetName (StringlocalName)
在 System.Xml.Linq.XName. Get 获取(字符串扩展名称)

65129 次浏览

在 LINQtoXML 中这真的很简单:

XNamespace ns = "sphinx";
XElement element = new XElement(ns + "docset");

或者让“别名”看起来像你的例子,比如:

XNamespace ns = "http://url/for/sphinx";
XElement element = new XElement("container",
new XAttribute(XNamespace.Xmlns + "sphinx", ns),
new XElement(ns + "docset",
new XElement(ns + "schema"),
new XElement(ns + "field", new XAttribute("name", "subject")),
new XElement(ns + "field", new XAttribute("name", "content")),
new XElement(ns + "attr",
new XAttribute("name", "published"),
new XAttribute("type", "timestamp"))));

这就产生了:

<container xmlns:sphinx="http://url/for/sphinx">
<sphinx:docset>
<sphinx:schema />
<sphinx:field name="subject" />
<sphinx:field name="content" />
<sphinx:attr name="published" type="timestamp" />
</sphinx:docset>
</container>

您可以读取文档的名称空间,并在以下查询中使用它:

XDocument xml = XDocument.Load(address);
XNamespace ns = xml.Root.Name.Namespace;
foreach (XElement el in xml.Descendants(ns + "whateverYourElementNameIs"))
//do stuff