System.Xml.XmlException:"名称中不能包含':"字符(十六进制值0x3A)不能包含在名称中。



我想在我的xml中创建这样的东西:

<root>
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
</xsd:schema>
</root>

我的代码现在看起来像这样:

XElement rootElement = new XElement("root");
XDeclaration xDeclaration = new XDeclaration("1.0", "utf-8", "true");
XElement xdsElement = new XElement("xsd:schema"); // Exception there!

我的例外是:

System.Xml.XmlException:"':"字符,十六进制值0x3A, 不能包含在名称中。

如何消除此异常,也许该短语有某种生成器?

正如@juharr评论中所说,您需要首先将其定义为XNamespace,方法如下:

var ns_xsd = XNamespace.Get("http://www.w3.org/2001/XMLSchema");
var ns_msdata = XNamespace.Get("urn:schemas-microsoft-com:xml-msdata");
var root = new XElement("root", 
new XElement(ns_xsd + "schema", 
new XAttribute("id", "root"), 
new XAttribute("xmlns", ""), 
new XAttribute(XNamespace.Xmlns + "xsd", ns_xsd),
new XAttribute(XNamespace.Xmlns + "msdata", ns_msdata),
new XAttribute(ns_msdata + "IsDataSet", "true")));

最新更新