XContainer.Nodes returns a collection of the child nodes of this element or document, in document order. : XContainer « XML LINQ « VB.Net






XContainer.Nodes returns a collection of the child nodes of this element or document, in document order.

 

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

Public Class MainClass

    Public Shared Sub Main()
        Dim xmlTree As XElement = _ 
                <Root>
                    <Child1>1</Child1>
                    <Child2>2</Child2>
                    <!--a comment-->
                    <Child3>3</Child3>
                    <Child4>4</Child4>data
                    <Child5>5</Child5>
                    </Root>
        
        Dim nodes = From nd In xmlTree.Nodes() _
                    Select nd
        
        For Each node In nodes
            Console.WriteLine(node)
        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 returns a collection of the descendant elements for this document or element, in document order.
7.XContainer.Descendants (XName) returns a filtered collection of the descendant elements
8.XContainer.Element gets the first in document order child element with the specified XName.
9.XContainer.Elements returns a collection of the child elements of this element or document, in document order.
10.XContainer.Elements Method returns a filtered collection of the child elements of this element or document
11.XContainer.LastNode Property gets the last child node of this node.
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.