1. ホーム
  2. c#

XElementの名前空間(How to?)

2023-11-26 14:30:55

質問

のようなノード接頭辞を持つ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: 文字、16進数値0x3Aは、名前に含めることができません。 value 0x3A, は名前に含めることができません。

at System.Xml.XmlConvert.VerifyNCName(String name, ExceptionType exceptionTyp) e)

at System.Xml.Linq.XName..ctor(XNamespace ns, String localName)

at System.Xml.Linq.XNamespace.GetName(StringのlocalName)

at System.Xml.Linq.XName.Get(String拡張名)

どのように解決するのですか?

LINQ to XMLではとても簡単です。

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

または、"alias"を正しく動作させて、あなたの例のように見えるようにするには、次のようなものです。

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>