XContainer.Descendants Method
Returns a collection of the descendant elements for this document or element, in document order.
Assembly: System.Xml.Linq (in System.Xml.Linq.dll)
Return Value
Type: System.Collections.Generic.IEnumerable<XElement>An IEnumerable<T> of XElement containing the descendant elements of the XContainer.
Note that this method will not return itself in the resulting IEnumerable<T>. See DescendantsAndSelf if you need to include the current XElement in the results.
This method uses deferred execution.
The following example creates an XML tree, and then uses this axis method to retrieve the descendants.
XElement xmlTree = new XElement("Root", new XAttribute("Att1", "AttributeContent"), new XElement("Child", new XText("Some text"), new XElement("GrandChild", "element content") ) ); IEnumerable<XElement> de = from el in xmlTree.Descendants() select el; foreach (XElement el in de) Console.WriteLine(el.Name);
This example produces the following output:
Child GrandChild
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.