XContainer..::.Nodes Method
This page is specific to:.NET Framework Version:3.5Silverlight 34.0
.NET Framework Class Library
XContainer..::.Nodes Method

Returns a collection of the child nodes of this element or document, in document order.

Namespace:  System.Xml.Linq
Assembly:  System.Xml.Linq (in System.Xml.Linq.dll)
Syntax

'Usage

Dim instance As XContainer
Dim returnValue As IEnumerable(Of XNode)

returnValue = instance.Nodes()

'Declaration

Public Function Nodes As IEnumerable(Of XNode)

Return Value

Type: System.Collections.Generic..::.IEnumerable<(Of <(XNode>)>)
An IEnumerable<(Of <(T>)>) of XNode containing the contents of this XContainer, in document order.
Remarks

Note that the content does not include attributes. In LINQ to XML, attributes are not considered to be nodes of the tree. They are name/value pairs associated with an element.

This method uses deferred execution.

Examples

The following example creates an XML tree with a variety of types of nodes. It then queries this axis method to enumerate and print the nodes.

Dim xmlTree As XElement = _ 
        <Root>
            <Child1>1</Child1>
            <Child2>2</Child2>
            <!--a comment-->
            <Child3>3</Child3>
            <Child4>4</Child4>mixed content<Child5>5</Child5>
            </Root>

Dim nodes = From nd In xmlTree.Nodes() _
            Select nd

For Each node In nodes
    Console.WriteLine(node)
Next

This example produces the following output:

<Child1>1</Child1>
<Child2>2</Child2>
<!--a comment-->
<Child3>3</Child3>
<Child4>4</Child4>
mixed content
<Child5>5</Child5>

The following example creates an XML tree that contains a variety of types of nodes. It then enumerates through portions of the tree, printing the node types.

Dim xmlTree As XDocument = _ 
    <?xml version="1.0" encoding="utf-8"?>
    <!--a comment-->
    <?xml-stylesheet type='text/xsl' href='hello.xsl'?>
    <Root Att="attContent">
        <Child1><![CDATA[CDATA content]]></Child1>
        <Child2>Text content</Child2>
    </Root>

' Note that XNode uses XmlNodeType, which is in the System.Xml namespace
For Each node In xmlTree.Nodes
    Console.WriteLine(node.NodeType.ToString())
    If node.NodeType = XmlNodeType.Element Then
        For Each att In DirectCast(node, XElement).Attributes
            Console.WriteLine(att.NodeType.ToString())
        Next
        For Each node2 In DirectCast (node, XElement).Nodes()
            Console.WriteLine(node2.NodeType.ToString())
            If node2.NodeType = XmlNodeType.Element Then
                For Each node3 In DirectCast (node2, XElement).Nodes
                    Console.WriteLine(node3.NodeType.ToString())
                Next
            End If
        Next
    End If
Next

This example produces the following output:

Comment
ProcessingInstruction
Element
Attribute
Element
CDATA
Element
Text
Platforms

Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC, Xbox 360, Zune

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Version Information

.NET Framework

Supported in: 3.5

.NET Compact Framework

Supported in: 3.5

XNA Framework

Supported in: 3.0
See Also

Reference

Other Resources

© 2009 Microsoft Corporation. All rights reserved.   Terms of Use | Trademarks | Privacy Statement
Page view tracker
Rate the Lightweight library
x
Lightweight builds on ScriptFree (loband) by adding features you've requested: a SearchBox and default code language selection.
Do you like the SearchBox?
Do you like the tabbed code blocks?
How useful is this topic?
Tell us more.
Thanks
x
You're helping to improve MSDN Online.
Feedback
Switch View
Classic
Lightweight Beta
ScriptFree
Switch View