XNamespace.GetName returns an XName object created from this XNamespace and the specified local name. : XNamespace « XML LINQ « VB.Net






XNamespace.GetName returns an XName object created from this XNamespace and the specified local name.

  


Imports <xmlns:aw="http://www.domain.com">
Imports System
Imports System.Xml
Imports System.Xml.Schema
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

   
    
  








Related examples in the same category

1.Using the Xml name space in the query
2.Import namespace
3.XNamespace Class represents an XML namespace.
4.Combines an XNamespace object with a local name to create an XName.
5.Returns a value indicating whether two instances of XNamespace are equal.
6.XNamespace.Equals determines whether the specified XNamespace is equal to the current XNamespace.
7.XNamespace.Get gets an XNamespace for the specified Uniform Resource Identifier (URI).
8.XNamespace.Inequality Operator
9.XNamespace.NamespaceName Property gets the Uniform Resource Identifier (URI) of this namespace.
10.XNamespace.None Property gets the XNamespace object that corresponds to no namespace.
11.XNamespace.ToString returns the URI of this XNamespace.
12.XNamespace.Xml Property gets the XNamespace object that corresponds to the XML URI (http://www.w3.org/XML/1998/namespace).
13.XNamespace.Xmlns Property gets the XNamespace object that corresponds to the xmlns URI (http://www.w3.org/2000/xmlns/).
14.XNamespace Implicit Conversion (String to XNamespace)
15.Selects an XElement using a XPath expression, resolving namespace prefixes using the specified IXmlNamespaceResolver.
16.Extensions.XPathSelectElement selects XElement using a XPath expression, resolving namespace prefixes using the specified IXmlNamespaceResolver.
17.XElement with namespace
18.XElement.GetDefaultNamespace gets the default XNamespace of this XElement.
19.XElement.GetNamespaceOfPrefix gets the namespace associated with a particular prefix for this XElement.
20.XElement.GetPrefixOfNamespace gets the prefix associated with a namespace for this XElement.
21.Imports namespace for XElement
22.Check for namespace for XElement
23.Add namespace to XElement
24.Reference namespace in XElement
25.IEnumerable with namespace