XNamespace.Get(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Returns
An XNamespace created from the specified URI.
Examples
The following example gets a XNamespace from a specified URI.
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
This example produces the following output:
http://www.adventure-works.com
http://www.adventure-works.com
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
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET