.NET Framework Class Library
XNamespace..::.Xml Property

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)
Syntax

Visual Basic (Declaration)
Public Shared ReadOnly Property Xml As XNamespace
Visual Basic (Usage)
Dim value As XNamespace

value = XNamespace.Xml
C#
public static XNamespace Xml { get; }
Visual C++
public:
static property XNamespace^ Xml {
    XNamespace^ get ();
}
JScript
public static function get Xml () : XNamespace

Property Value

Type: System.Xml.Linq..::.XNamespace
The XNamespace that corresponds to the XML URI (http://www.w3.org/XML/1998/namespace).
Remarks

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.

Examples

The following example shows how to create an xml:space="preserve" attribute in an XML tree:

C#
XElement root = new XElement("Root",
    new XAttribute(XNamespace.Xml + "space", "preserve"),
    new XElement("Child", "content")
);
Console.WriteLine(root);
Visual Basic
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>
Platforms

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.
Version Information

.NET Framework

Supported in: 3.5

.NET Compact Framework

Supported in: 3.5

XNA Framework

Supported in: 3.0
See Also

Reference

Other Resources

Tags :


Page view tracker