Extensions.XPathSelectElement selects XElement using a XPath expression, resolving namespace prefixes using the specified IXmlNamespaceResolver. : XNamespace « XML LINQ « VB.Net






Extensions.XPathSelectElement selects XElement using a XPath expression, resolving namespace prefixes using the specified IXmlNamespaceResolver.

  

Imports System
Imports System.Xml
Imports System.Xml.XPath

Public Class MainClass

    Public Shared Sub Main()
        
        Dim markup As XElement = _
            <aw:Root xmlns:aw='http://www.domain.com'>
                <aw:Child1>child one data</aw:Child1>
                <aw:Child2>child two data</aw:Child2>
            </aw:Root>
        Dim reader As XmlReader = markup.CreateReader
        Dim nameTable As XmlNameTable = reader.NameTable
        Dim namespaceManager As XmlNamespaceManager = New XmlNamespaceManager(nameTable)
        namespaceManager.AddNamespace("aw", "http://www.domain.com")
        Dim child1 As XElement = markup.XPathSelectElement("./aw:Child1", namespaceManager)
        Console.WriteLine(child1)

    End Sub

End Class

   
    
  








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.GetName returns an XName object created from this XNamespace and the specified local name.
9.XNamespace.Inequality Operator
10.XNamespace.NamespaceName Property gets the Uniform Resource Identifier (URI) of this namespace.
11.XNamespace.None Property gets the XNamespace object that corresponds to no namespace.
12.XNamespace.ToString returns the URI of this XNamespace.
13.XNamespace.Xml Property gets the XNamespace object that corresponds to the XML URI (http://www.w3.org/XML/1998/namespace).
14.XNamespace.Xmlns Property gets the XNamespace object that corresponds to the xmlns URI (http://www.w3.org/2000/xmlns/).
15.XNamespace Implicit Conversion (String to XNamespace)
16.Selects an 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