XNode.Ancestors Method
.NET Framework 3.5
Returns a collection of the ancestor elements of this node.
Assembly: System.Xml.Linq (in System.Xml.Linq.dll)
Return Value
Type: System.Collections.Generic.IEnumerable<XElement>An IEnumerable<T> of XElement of the ancestor elements of this node.
The following example uses this method to enumerate the ancestors of a node.
XElement xmlTree = new XElement("Root", new XElement("Child", new XElement("GrandChild", "content") ) ); IEnumerable<XElement> grandChild = xmlTree.Descendants("GrandChild"); foreach (XElement el in grandChild.Ancestors()) Console.WriteLine(el.Name);
This example produces the following output:
Child Root
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.