Namespace Property
Collapse the table of content
Expand the table of content

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; }

Property Value

Type: System.Xml.Linq.XNamespace
An XNamespace that contains the namespace part of the name.

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

Windows Phone

Show:
© 2017 Microsoft