Gets the XNamespace object that corresponds to the XML URI (http://www.w3.org/XML/1998/namespace).
Namespace:
System.Xml.Linq
Assembly:
System.Xml.Linq (in System.Xml.Linq.dll)
Visual Basic (Declaration)
Public Shared ReadOnly Property Xml As XNamespace
Dim value As XNamespace
value = XNamespace.Xml
public static XNamespace Xml { get; }
public:
static property XNamespace^ Xml {
XNamespace^ get ();
}
public static function get Xml () : XNamespace
Certain standardized attributes, such as space, are in the http://www.w3.org/XML/1998/namespace namespace. The W3C standard specifies that this namespace does not have to be declared as an attribute in the XML tree. It is a reserved namespace that is always automatically available in the XML parser.
The following example shows how to create an xml:space="preserve" attribute in an XML tree:
XElement root = new XElement("Root",
new XAttribute(XNamespace.Xml + "space", "preserve"),
new XElement("Child", "content")
);
Console.WriteLine(root);
Dim root As XElement = _
<Root xml:space="preserve">
<Child>content</Child>
</Root>
Console.WriteLine(root)
This example produces the following output:
<Root xml:space="preserve">
<Child>content</Child>
</Root>
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC, Xbox 360, Zune
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
.NET Framework
Supported in: 3.5
.NET Compact Framework
Supported in: 3.5
XNA Framework
Supported in: 3.0
Reference
Other Resources