XName.ToString Méthode

Définition

Retourne le nom XML développé au format {namespace}localname.

public:
 override System::String ^ ToString();
public override string ToString ();
override this.ToString : unit -> string
Public Overrides Function ToString () As String

Retours

String qui contient le nom XML développé au format {namespace}localname.

Exemples

L’exemple suivant appelle WriteLine, en passant un XName. Cela entraîne l’appel de la ToString méthode.

XNamespace ns = "http://www.adventure-works.com";
XElement root = new XElement(ns + "Root", "content");
Console.WriteLine(root.Name);
Console.WriteLine(root.Name.LocalName);
Console.WriteLine(root.Name.Namespace);
Imports <xmlns="http://www.adventure-works.com">

Module Module1
    Sub Main()
        Dim root As XElement = <Root>content</Root>
        Console.WriteLine(root.Name)
        Console.WriteLine(root.Name.LocalName)
        Console.WriteLine(root.Name.Namespace)
    End Sub
End Module

Cet exemple produit la sortie suivante :

{http://www.adventure-works.com}Root
Root
http://www.adventure-works.com

S’applique à

Voir aussi