This documentation is archived and is not being maintained.
XName.Namespace Property
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Gets the namespace part of the fully qualified name.
Namespace:
System.Xml.Linq
Assembly:
System.Xml.Linq (in System.Xml.Linq.dll)
public XNamespace Namespace { get; }
The Namespace property is guaranteed to not be null. If an XName is in no namespace, this property returns None.
The following example shows the use of this property.
StringBuilder output = new StringBuilder();
XNamespace ns = "http://www.adventure-works.com";
XElement root = new XElement(ns + "Root", "content");
output.Append(root.Name);
output.Append(root.Name.LocalName);
output.Append(root.Name.Namespace);
OutputTextBlock.Text = output.ToString();
Windows Phone OS
Supported in: 8.1, 8.0, 7.1, 7.0