Returns a filtered collection of the ancestor elements of this node. Only elements that have a matching XName are included in the collection.
Namespace:
System.Xml.Linq
Assembly:
System.Xml.Linq (in System.Xml.Linq.dll)
Visual Basic (Declaration)
Public Function Ancestors ( _
name As XName _
) As IEnumerable(Of XElement)
Dim instance As XNode
Dim name As XName
Dim returnValue As IEnumerable(Of XElement)
returnValue = instance.Ancestors(name)
public IEnumerable<XElement> Ancestors(
XName name
)
public:
IEnumerable<XElement^>^ Ancestors(
XName^ name
)
public function Ancestors(
name : XName
) : IEnumerable<XElement>
This method will not return itself in the results.
The following example uses this method.
XElement xmlTree = new XElement("Root",
new XElement("Child",
new XElement("GrandChild", "content")
)
);
IEnumerable<XElement> grandChild = xmlTree.Descendants("GrandChild");
foreach (XElement el in grandChild.Ancestors("Child"))
Console.WriteLine(el.Name);
Dim xmlTree As XElement = _
<Root>
<Child>
<GrandChild>content</GrandChild>
</Child>
</Root>
Dim grandChild As IEnumerable(Of XElement) = xmlTree...<GrandChild>
For Each el In grandChild.Ancestors("Child")
Console.WriteLine(el.Name)
Next
This example produces the following output:
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.
.NET Framework
Supported in: 3.5
.NET Compact Framework
Supported in: 3.5
XNA Framework
Supported in: 3.0
Reference
Other Resources