XNamespace.GetName(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.
Returns an XName object created from this XNamespace and the specified local name.
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
Parameters
Returns
An XName created from this XNamespace and the specified local name.
Examples
The following example uses this property to retrieve an 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
This example produces the following output:
{http://www.adventure-works.com}Root
Remarks
The returned XName object is guaranteed to be atomic (that is, it is the only one in the system for a specific expanded name).
Applies to
See also
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.