XNamespace.GetName(String) Metodo

Definizione

Restituisce un oggetto XName creato da questo XNamespace e il nome locale specificato.

public:
 System::Xml::Linq::XName ^ GetName(System::String ^ localName);
public System.Xml.Linq.XName GetName (string localName);
member this.GetName : string -> System.Xml.Linq.XName
Public Function GetName (localName As String) As XName

Parametri

localName
String

String che contiene un nome locale.

Restituisce

XName

XName creato da questo XNamespace e il nome locale specificato.

Esempio

Nell'esempio seguente viene utilizzata questa proprietà per recuperare un oggetto XName.

XNamespace aw = "http://www.adventure-works.com";  
XName name = aw.GetName("Root");  
Console.WriteLine("{0}", name);  
Imports <xmlns:aw="http://www.adventure-works.com">  

Module Module1  
    Sub Main()  
        Dim aw As XNamespace = GetXmlNamespace(aw)  
        Dim name As XName = aw.GetName("Root")  
        Console.WriteLine("{0}", name)  
    End Sub  
End Module  

Nell'esempio viene prodotto l'output seguente:

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

Commenti

L'oggetto restituito XName è garantito che sia atomico, ovvero è l'unico nel sistema per un nome espanso specifico.

Si applica a

Vedi anche