Extensions::Nodes<T> Method (IEnumerable<T>^)
.NET Framework (current version)
Returns a collection of the child nodes of every document and element in the source collection.
Assembly: System.Xml.Linq (in System.Xml.Linq.dll)
public: generic<typename T> where T : XContainer [ExtensionAttribute] static IEnumerable<XNode^>^ Nodes( IEnumerable<T>^ source )
Parameters
- source
-
Type:
System.Collections.Generic::IEnumerable<T>^
An IEnumerable<T> of XNode that contains the source collection.
Return Value
Type: System.Collections.Generic::IEnumerable<XNode^>^An IEnumerable<T> of XNode of the child nodes of every document and element in the source collection.
Type Parameters
- T
The type of the objects in source, constrained to XContainer.
This method uses deferred execution.
The following example retrieves all of the child nodes for every node in a collection of elements with the name of Child.
This example produces the following output:
Text: aaa Element: GrandChild Text: bbb Text: ccc Element: GrandChild Text: ddd
Universal Windows Platform
Available since 8
.NET Framework
Available since 3.5
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Available since 8
.NET Framework
Available since 3.5
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Show: