XElement.DescendantNodesAndSelf Method
.NET Framework 3.5
Returns a collection of nodes that contain this element, and all descendant nodes of this element, in document order.
Assembly: System.Xml.Linq (in System.Xml.Linq.dll)
Return Value
Type: System.Collections.Generic.IEnumerable<XNode>An IEnumerable<T> of XNode that contain this element, and all descendant nodes of this element, in document order.
The following example creates an XML tree, and then uses this axis method.
XElement xmlTree = new XElement("Root", // Attributes are not nodes, so will not be returned by DescendantNodesAndSelf. new XAttribute("Att1", "AttributeContent"), new XElement("Child", new XText("Some text"), new XElement("GrandChild", "element content") ) ); IEnumerable<XNode> dnas = from node in xmlTree.DescendantNodesAndSelf() select node; foreach (XNode node in dnas) { if (node is XElement) Console.WriteLine((node as XElement).Name); else Console.WriteLine(node); }
This example produces the following output:
Root Child Some text GrandChild element content
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.