XNamespace.Xml Eigenschaft

Definition

Ruft das XNamespace-Objekt ab, das dem XML-URI (http://www.w3.org/XML/1998/namespace) entspricht.

public:
 static property System::Xml::Linq::XNamespace ^ Xml { System::Xml::Linq::XNamespace ^ get(); };
public static System.Xml.Linq.XNamespace Xml { get; }
member this.Xml : System.Xml.Linq.XNamespace
Public Shared ReadOnly Property Xml As XNamespace

Eigenschaftswert

XNamespace

Der XNamespace dem XML-URI (http://www.w3.org/XML/1998/namespace) entspricht.

Beispiele

Das folgende Beispiel zeigt, wie Sie ein xml:space="preserve" Attribut in einer XML-Struktur erstellen:

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)  

Dieses Beispiel erzeugt die folgende Ausgabe:

<Root xml:space="preserve">  
  <Child>content</Child>  
</Root>  

Hinweise

Bestimmte standardisierte Attribute, z space. B. , befinden sich im http://www.w3.org/XML/1998/namespace Namespace. Der W3C-Standard gibt an, dass dieser Namespace nicht als Attribut in der XML-Struktur deklariert werden muss. Es handelt sich um einen reservierten Namespace, der im XML-Parser immer automatisch verfügbar ist.

Gilt für

Siehe auch