XNamespace как дополнительный атрибут, почему
Я хочу добиться этого:
<?xml version="1.0" encoding="utf-8"?>
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
<appSettings>
<add key="WriteToLogFile" value="true" xdt:Transform="SetAttributes(value)" xdt:Locator="Match(name)" />
<add key="SendErrorEmail" value="false" xdt:Transform="SetAttributes(value)" xdt:Locator="Match(name)" />
</appSettings>
</configuration>
Вот мой код C#:
var items = GetItems();
XNamespace xdtNamespace = "xdt";
XDocument doc = new XDocument(new XElement("configuration", new XAttribute(XNamespace.Xmlns + "xdt", "http://schemas.microsoft.com/XML-Document-Transform"),
new XElement("appSettings", from item in items
select new XElement("add",
new XAttribute("key", item.Key),
new XAttribute("value", item.Value),
new XAttribute(xdtNamespace + "Transform", "SetAttributes(value)"),
new XAttribute(xdtNamespace + "Locator", "Match(name)")))));
doc.Declaration = new XDeclaration("1.0", "utf-8", null);
doc.Save("Test.xml");
Вывод для моего кода C#:
<?xml version="1.0" encoding="utf-8"?>
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
<appSettings>
<add key="WriteToLogFile" value="true" p4:Transform="SetAttributes(value)" p4:Locator="Match(name)" xmlns:p4="xdt" />
<add key="SendErrorEmail" value="false" p4:Transform="SetAttributes(value)" p4:Locator="Match(name)" xmlns:p4="xdt" />
</appSettings>
</configuration>
Как видите, для каждого элемента есть дополнительный атрибут xmlns: p4 = "xdt". А атрибуты Transform и Locator имеют префикс p4 вместо xdt. Почему это происходит?
Я уже читал документацию по msdn, касающуюся пространств имен xml (и несколько других подобных статей), но, честно говоря, это довольно запутанно, я не нашел ничего полезного.
Есть ли хорошие статьи, которые в двух словах объясняют мой случай?
1 ответ
Решение
Вы путаете псевдоним пространства имен (которым вы хотите быть xdt
) с URI пространства имен. Вы хотите поместить элементы в правильное пространство имен (по URI), но указать xmlns
атрибут в корневом элементе с псевдонимом, который вы хотите:
using System;
using System.Xml.Linq;
class Test
{
static void Main(string[] args)
{
XNamespace xdt = "http://schemas.microsoft.com/XML-Document-Transform";
XDocument doc = new XDocument(
new XElement("configuration",
new XAttribute(XNamespace.Xmlns + "xdt", xdt.NamespaceName),
new XElement("appSettings",
new XElement("add",
new XAttribute("key", "WriteToLogFile"),
new XAttribute("value", true),
new XAttribute(xdt + "Transform", "SetAttributes(value)"),
new XAttribute(xdt + "Locator", "Match(name)")
)
)
)
);
Console.WriteLine(doc);
}
}
Выход:
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
<appSettings>
<add key="WriteToLogFile" value="true" xdt:Transform="SetAttributes(value)" xdt:Locator="Match(name)" />
</appSettings>
</configuration>