Extensions.DescendantNodesAndSelf(IEnumerable<XElement>) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回节点的集合,其中包含源集合中的每个元素及其子代节点。
public:
[System::Runtime::CompilerServices::Extension]
static System::Collections::Generic::IEnumerable<System::Xml::Linq::XNode ^> ^ DescendantNodesAndSelf(System::Collections::Generic::IEnumerable<System::Xml::Linq::XElement ^> ^ source);
public static System.Collections.Generic.IEnumerable<System.Xml.Linq.XNode> DescendantNodesAndSelf (this System.Collections.Generic.IEnumerable<System.Xml.Linq.XElement> source);
public static System.Collections.Generic.IEnumerable<System.Xml.Linq.XNode> DescendantNodesAndSelf (this System.Collections.Generic.IEnumerable<System.Xml.Linq.XElement?> source);
static member DescendantNodesAndSelf : seq<System.Xml.Linq.XElement> -> seq<System.Xml.Linq.XNode>
<Extension()>
Public Function DescendantNodesAndSelf (source As IEnumerable(Of XElement)) As IEnumerable(Of XNode)
参数
- source
- IEnumerable<XElement>
一个包含源集合的 IEnumerable<T> 的 XElement。
返回
IEnumerable<T> 的 XNode,其中包含源集合中的每个元素及其子代节点。
注解
尽管Visual Basic具有子代元素的集成 XML 轴,但后代节点没有集成轴,因此Visual Basic用户必须显式使用此轴方法。
此方法使用延迟执行。