XContainer.Descendants returns a collection of the descendant elements for this document or element, in document order. : XContainer « XML LINQ « VB.Net






XContainer.Descendants returns a collection of the descendant elements for this document or element, in document order.

 

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

Public Class MainClass

    Public Shared Sub Main()
        Dim xmlTree As XElement = _
            <Root Att1="AttributeContent">
                <Child>Some text
                    <GrandChild>element</GrandChild>
                </Child>
            </Root>
        Dim de = From el In xmlTree.Descendants _
                 Select el
        
        For Each el In de
            Console.WriteLine(el.Name)
        Next
    End Sub
End Class

   
  








Related examples in the same category

1.XContainer.Add adds the specified content as children of this XContainer.
2.XContainer.Add (Object[]) adds the specified content as children of this XContainer.
3.XContainer.AddFirst adds the specified content as the first children of this document or element.
4.XContainer.AddFirst(Object[]) adds the specified content as the first children of this document or element.
5.XContainer.DescendantNodes returns a collection of the descendant nodes
6.XContainer.Descendants (XName) returns a filtered collection of the descendant elements
7.XContainer.Element gets the first in document order child element with the specified XName.
8.XContainer.Elements returns a collection of the child elements of this element or document, in document order.
9.XContainer.Elements Method returns a filtered collection of the child elements of this element or document
10.XContainer.LastNode Property gets the last child node of this node.
11.XContainer.Nodes returns a collection of the child nodes of this element or document, in document order.
12.XContainer.RemoveNodes Removes the child nodes from this document or element.
13.XContainer.ReplaceNodes replaces the children nodes of this document or element with the specified content.