How to create XElement with default namespace for children without using XNamespace in all child nodes - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T06:20:59Zhttp://stackoverflow.com/feeds/question/477962http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/477962/how-to-create-xelement-with-default-namespace-for-children-without-using-xnamespa1How to create XElement with default namespace for children without using XNamespace in all child nodesBarry Kelly2009-01-25T17:34:56Z2009-02-07T15:11:42Z
<p>I'm trying to use <code>System.Xml.Linq</code> to create XHTML documents. Thus, the vast majority of the nodes in my trees ought to use this namespace:</p>
<pre><code>http://www.w3.org/1999/xhtml
</code></pre>
<p>I can create <code>XElement</code> nodes scoped to this namespace easily enough, using an <code>XNamespace</code>, like this:</p>
<pre><code>XNamespace xhtml = "http://www.w3.org/1999/xhtml";
// ...
new XElement(xhtml + "html", // ...
</code></pre>
<p>However, I don't want to have to make an <code>XNamespace</code> available throughout all the code that creates HTML nodes, and have to prefix every single <code>XElement</code> (and <code>XAttribute</code>) name I create accordingly.</p>
<p>The XML text format itself takes this requirement into account, and permits setting a default namespace in an ancestor which is inherited by descendants, using the reserved <code>xmlns</code> attribute. I'd like to do something similar using <code>System.Xml.Linq</code>.</p>
<p>Is this possible?</p>
http://stackoverflow.com/questions/477962/how-to-create-xelement-with-default-namespace-for-children-without-using-xnamespa/477997#4779970Answer by AnthonyWJones for How to create XElement with default namespace for children without using XNamespace in all child nodesAnthonyWJones2009-01-25T18:02:19Z2009-01-25T18:14:02Z<p>The problem is the the XName used to create the XElement needs to specify the correct namespace. What I would be tempted to do is create a static class like this:-</p>
<pre><code>public static class XHtml
{
public static readonly XNamespace Namespace = "http://www.w3.org/1999/xhtml";
public static XName Html { get { return Namespace + "html"; } }
public static XName Body { get { return Namespace + "body"; } }
//.. other element types
}
</code></pre>
<p>Now you can build a xhtml doc like this:-</p>
<pre><code>XDocument doc = new XDocument(
new XElement(XHtml.Html,
new XElement(XHtml.Body)
)
);
</code></pre>
<p>An alternative approach to that static class would be:-</p>
<pre><code>static class XHtml
{
public static readonly XNamespace Namespace = "http://www.w3.org/1999/xhtml";
public static readonly XName Html = Namespace + "html";
public static readonly XName Body = Namespace + "body";
}
</code></pre>
<p>This has the downside of instancing all the possible XName regardless of whether you use them but the upside is the conversion of Namespace + "tagname" only happens once. I'm not sure this conversion would be optimised out otherwise. I am sure that XNames are only instanced once:-</p>
<pre><code>XNamepace n = "http://www.w3.org/1999/xhtml";
XNames x = n + "A";
XName y = n + "A";
Object.ReferenceEquals(x, y) //is true.
</code></pre>
http://stackoverflow.com/questions/477962/how-to-create-xelement-with-default-namespace-for-children-without-using-xnamespa/523914#5239142Answer by Barry Kelly for How to create XElement with default namespace for children without using XNamespace in all child nodesBarry Kelly2009-02-07T15:11:42Z2009-02-07T15:11:42Z<p>I've decided to use a static class called <code>XHtml</code>, that looks like this:</p>
<pre><code>public static class XHtml
{
static XHtml()
{
Namespace = "http://www.w3.org/1999/xhtml";
}
public static XNamespace Namespace { get; private set; }
public static XElement Element(string name)
{
return new XElement(Namespace + name);
}
public static XElement Element(string name, params object[] content)
{
return new XElement(Namespace + name, content);
}
public static XElement Element(string name, object content)
{
return new XElement(Namespace + name, content);
}
public static XAttribute Attribute(string name, object value)
{
return new XAttribute(/* Namespace + */ name, value);
}
public static XText Text(string text)
{
return new XText(text);
}
public static XElement A(string url, params object[] content)
{
XElement result = Element("a", content);
result.Add(Attribute("href", url));
return result;
}
}
</code></pre>
<p>This seems to be the cleanest way of doing things, particularly as I can then add in convenience routines, such as the <code>XHtml.A</code> method (not all of my class is shown here).</p>