XNamespace.Get(String) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient un XNamespace pour l'URI (Uniform Resource Identifier) spécifié.
public:
static System::Xml::Linq::XNamespace ^ Get(System::String ^ namespaceName);
public static System.Xml.Linq.XNamespace Get (string namespaceName);
static member Get : string -> System.Xml.Linq.XNamespace
Public Shared Function Get (namespaceName As String) As XNamespace
Paramètres
Retours
XNamespace créé à partir de l'URI spécifié.
Exemples
L’exemple suivant obtient un XNamespace URI spécifié.
XNamespace aw = XNamespace.Get("http://www.adventure-works.com");
// This is the preferred form.
XNamespace aw2 = "http://www.adventure-works.com";
Console.WriteLine(aw);
Console.WriteLine(aw2);
Imports <xmlns:aw="http://www.adventure-works.com">
Module Module1
Sub Main()
Dim aw As XNamespace = XNamespace.Get("http://www.adventure-works.com")
' This is the preferred form.
Dim aw2 As XNamespace = GetXmlNamespace(aw)
Console.WriteLine(aw)
Console.WriteLine(aw2)
End Sub
End Module
Cet exemple produit la sortie suivante :
http://www.adventure-works.com
http://www.adventure-works.com
Remarques
L’objet retourné XNamespace est garanti être atomique (autrement dit, il s’agit du seul dans le système pour cet URI particulier).