Extensions.DescendantsAndSelf メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ソース コレクション内のすべての要素、およびソース コレクション内のすべての要素のすべての子孫要素のコレクションを返します。
オーバーロード
DescendantsAndSelf(IEnumerable<XElement>) |
ソース コレクション内のすべての要素、およびソース コレクション内のすべての要素の子孫要素が格納された要素のコレクションを返します。 |
DescendantsAndSelf(IEnumerable<XElement>, XName) |
ソース コレクション内のすべての要素、およびソース コレクション内のすべての要素の子孫要素が格納され、フィルター処理された要素のコレクションを返します。 一致する XName を持つ要素のみがコレクションに含められます。 |
注釈
Visual Basicには子孫要素用の統合 XML 軸がありますが、このメソッドのセマンティクスを持つ統合軸はありません。
このメソッドは遅延実行を使用します。
DescendantsAndSelf(IEnumerable<XElement>)
ソース コレクション内のすべての要素、およびソース コレクション内のすべての要素の子孫要素が格納された要素のコレクションを返します。
public:
[System::Runtime::CompilerServices::Extension]
static System::Collections::Generic::IEnumerable<System::Xml::Linq::XElement ^> ^ DescendantsAndSelf(System::Collections::Generic::IEnumerable<System::Xml::Linq::XElement ^> ^ source);
public static System.Collections.Generic.IEnumerable<System.Xml.Linq.XElement> DescendantsAndSelf (this System.Collections.Generic.IEnumerable<System.Xml.Linq.XElement> source);
public static System.Collections.Generic.IEnumerable<System.Xml.Linq.XElement> DescendantsAndSelf (this System.Collections.Generic.IEnumerable<System.Xml.Linq.XElement?> source);
static member DescendantsAndSelf : seq<System.Xml.Linq.XElement> -> seq<System.Xml.Linq.XElement>
<Extension()>
Public Function DescendantsAndSelf (source As IEnumerable(Of XElement)) As IEnumerable(Of XElement)
パラメーター
- source
- IEnumerable<XElement>
ソース コレクションが格納されている IEnumerable<T> の XElement。
戻り値
ソース コレクション内のすべての要素、およびソース コレクション内のすべての要素の子孫要素が格納された、IEnumerable<T> の XElement。
注釈
Visual Basicには子孫要素の統合 XML 軸がありますが、このメソッドのセマンティクスを持つ統合軸がないため、Visual Basicユーザーはこの軸メソッドを明示的に使用する必要があります。
このメソッドは遅延実行を使用します。
こちらもご覧ください
- DescendantNodesAndSelf()
- DescendantsAndSelf()
- DescendantNodes()
- Descendants()
- DescendantNodes<T>(IEnumerable<T>)
- Descendants
- Nodes<T>(IEnumerable<T>)
- LINQ to XML の概要
適用対象
DescendantsAndSelf(IEnumerable<XElement>, XName)
ソース コレクション内のすべての要素、およびソース コレクション内のすべての要素の子孫要素が格納され、フィルター処理された要素のコレクションを返します。 一致する XName を持つ要素のみがコレクションに含められます。
public:
[System::Runtime::CompilerServices::Extension]
static System::Collections::Generic::IEnumerable<System::Xml::Linq::XElement ^> ^ DescendantsAndSelf(System::Collections::Generic::IEnumerable<System::Xml::Linq::XElement ^> ^ source, System::Xml::Linq::XName ^ name);
public static System.Collections.Generic.IEnumerable<System.Xml.Linq.XElement> DescendantsAndSelf (this System.Collections.Generic.IEnumerable<System.Xml.Linq.XElement> source, System.Xml.Linq.XName name);
public static System.Collections.Generic.IEnumerable<System.Xml.Linq.XElement> DescendantsAndSelf (this System.Collections.Generic.IEnumerable<System.Xml.Linq.XElement?> source, System.Xml.Linq.XName? name);
static member DescendantsAndSelf : seq<System.Xml.Linq.XElement> * System.Xml.Linq.XName -> seq<System.Xml.Linq.XElement>
<Extension()>
Public Function DescendantsAndSelf (source As IEnumerable(Of XElement), name As XName) As IEnumerable(Of XElement)
パラメーター
- source
- IEnumerable<XElement>
ソース コレクションが格納されている IEnumerable<T> の XElement。
戻り値
ソース コレクション内のすべての要素、およびソース コレクション内のすべての要素の子孫が格納された、IEnumerable<T> の XElement。 一致する XName を持つ要素のみがコレクションに含められます。
注釈
Visual Basicには子孫要素の統合 XML 軸がありますが、このメソッドのセマンティクスを持つ統合軸がないため、Visual Basicユーザーはこの軸メソッドを明示的に使用する必要があります。
このメソッドは遅延実行を使用します。
こちらもご覧ください
- DescendantNodesAndSelf()
- DescendantsAndSelf()
- DescendantNodes()
- Descendants()
- DescendantNodes<T>(IEnumerable<T>)
- Descendants
- Nodes<T>(IEnumerable<T>)
- LINQ to XML の概要