DescendantNodes

The DescendantNodes operator can be called on a sequence of elements and returns a sequence containing the descendant nodes of each element or document.

Prototypes

The DescendantNodes operator has one prototype.

Example. The Only DescendantNodes Prototype
public static IEnumerable<XNode> DescendantNodes<T> (
  this IEnumerable<T> source
) where T : XContainer

This version can be called on a sequence of elements or documents and returns a sequence of nodes containing each source element's or document's descendant nodes.

This is different from the XContainer.DescendantNodes method in that this method is called on a sequence of elements or documents, as opposed to a single element or document.

Examples

For this example, I will ...

Get Pro LINQ: Language Integrated Query in C# 2008 now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.