我必须创建一个xml文件,其中包含一个具有以下属性的元素:
<element
xsi:schemaLocation="http://test.xsd"
xmlns="http://test2"
xmlns:xsi=http://test3>
我试过了:
XNamespace ns = "xsi";
var root = new XElement("element",
new XAttribute(ns + "schemaLocation", "http://test.xsd"), // (I)
new XAttribute(XNamespace.Xmlns, "http://test2"), // (II)
new XAttribute(XNamespace.Xmlns + "xsi", "http://test3"), // (III)
但唯一可以生成的是(III):
xmlns:xsi=http://test3
(I)生成如下:
p1:schemaLocation="http://test.xsd" xmlns:p1="xsi"
和(II)未生成,因为该行未编译。
关于如何生成这些属性的任何想法?
谢谢你, →
编辑 - 也在此处找到:Creating XML with namespaces and schemas from an XElement
答案 0 :(得分:0)
const string ns = "http://test2";
const string si = "http://test3";
const string schema_location = "http://test.xsd";
XNamespace xns = ns;
XNamespace sinsp = si;
XElement xe = new XElement(xns + "element",
new XAttribute(XNamespace.Xmlns + "xsi", si),
new XAttribute(sinsp+ "schemaLocation", schema_location),
new XElement(xns + "sometag", "somecontent")
);
return xe;