XElement.DescendantsAndSelf メソッド

定義

この要素およびこの要素のすべての子孫要素をドキュメント順で格納している、要素のコレクションを返します。

オーバーロード

DescendantsAndSelf(XName)

この要素およびこの要素のすべての子孫要素をドキュメント順で格納している、フィルター処理された要素のコレクションを返します。 一致する XName を持つ要素のみがコレクションに含められます。

DescendantsAndSelf()

この要素およびこの要素のすべての子孫要素をドキュメント順で格納している、要素のコレクションを返します。

注釈

このメソッドは遅延実行を使用します。

DescendantsAndSelf(XName)

この要素およびこの要素のすべての子孫要素をドキュメント順で格納している、フィルター処理された要素のコレクションを返します。 一致する XName を持つ要素のみがコレクションに含められます。

public:
 System::Collections::Generic::IEnumerable<System::Xml::Linq::XElement ^> ^ DescendantsAndSelf(System::Xml::Linq::XName ^ name);
public System.Collections.Generic.IEnumerable<System.Xml.Linq.XElement> DescendantsAndSelf (System.Xml.Linq.XName name);
public System.Collections.Generic.IEnumerable<System.Xml.Linq.XElement> DescendantsAndSelf (System.Xml.Linq.XName? name);
member this.DescendantsAndSelf : System.Xml.Linq.XName -> seq<System.Xml.Linq.XElement>
Public Function DescendantsAndSelf (name As XName) As IEnumerable(Of XElement)

パラメーター

name
XName

照合する XName

戻り値

IEnumerable<XElement>

この要素およびこの要素のすべての子孫要素をドキュメント順で格納している XElementIEnumerable<T>。 一致する XName を持つ要素のみがコレクションに含められます。

次の例では、XML ツリーを作成し、これを使用します。

XElement xmlTree = new XElement("Root",  
    new XAttribute("Att1", "AttributeContent"),  
    new XElement("Child",  
        new XText("Some text"),  
        new XElement("GrandChild", "element content")  
    )  
);  
IEnumerable<XElement> das = xmlTree.DescendantsAndSelf("Child");  
foreach (XElement el in das)  
    Console.WriteLine(el.Name);  
Dim xmlTree As XElement = _  
    <Root Att1="AttributeContent">  
        <Child>Some text  
            <GrandChild>element content</GrandChild>  
        </Child>  
    </Root>  

Dim das As IEnumerable(Of XElement) = xmlTree.DescendantsAndSelf("Child")  

For Each el In das  
    Console.WriteLine(el.Name)  
Next  

この例を実行すると、次の出力が生成されます。

Child  

注釈

このメソッドは遅延実行を使用します。

こちらもご覧ください

適用対象

DescendantsAndSelf()

この要素およびこの要素のすべての子孫要素をドキュメント順で格納している、要素のコレクションを返します。

public:
 System::Collections::Generic::IEnumerable<System::Xml::Linq::XElement ^> ^ DescendantsAndSelf();
public System.Collections.Generic.IEnumerable<System.Xml.Linq.XElement> DescendantsAndSelf ();
member this.DescendantsAndSelf : unit -> seq<System.Xml.Linq.XElement>
Public Function DescendantsAndSelf () As IEnumerable(Of XElement)

戻り値

IEnumerable<XElement>

この要素およびこの要素のすべての子孫要素をドキュメント順で格納している、要素の XElementIEnumerable<T>

次の例では、XML ツリーを作成し、これを使用します。

XElement xmlTree = new XElement("Root",  
    new XAttribute("Att1", "AttributeContent"),  
    new XElement("Child",  
        new XText("Some text"),  
        new XElement("GrandChild", "element content")  
    )  
);  
IEnumerable<XElement> das =  
    from el in xmlTree.DescendantsAndSelf()  
    select el;  
foreach (XElement el in das)  
    Console.WriteLine(el.Name);  
Dim xmlTree As XElement = _  
    <Root Att1="AttributeContent">  
        <Child>Some text  
            <GrandChild>element content</GrandChild>  
        </Child>  
    </Root>  

Dim das As IEnumerable(Of XElement) = _  
    From el In xmlTree.DescendantsAndSelf() _  
    Select el  

For Each el In das  
    Console.WriteLine(el.Name)  
Next  

この例を実行すると、次の出力が生成されます。

Root  
Child  
GrandChild  

注釈

このメソッドは遅延実行を使用します。

こちらもご覧ください

適用対象