XContainer.DescendantNodes Yöntem

Tanım

Bu belge veya öğe için belge sırasına göre alt düğümlerden oluşan bir koleksiyon döndürür.

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

Döndürülenler

IEnumerable<XNode>

IEnumerable<T> öğesinin XNode alt düğümlerini belge sırasına XContainergöre içeren bir.

Örnekler

Aşağıdaki örnek bir XML ağacı oluşturur ve eksende DescendantNodes yinelenir.

XElement xmlTree = new XElement("Root",  
    // Attributes are not nodes, so will not be returned by DescendantNodes.  
    new XAttribute("Att1", "AttributeContent"),  
    new XElement("Child",  
        new XElement("GrandChild", "element content")  
    )  
);  
IEnumerable<XNode> dnas =  
    from node in xmlTree.DescendantNodes()  
    select node;  
foreach (XNode node in dnas)  
{  
    if (node is XElement)  
        Console.WriteLine((node as XElement).Name);  
    else  
        Console.WriteLine(node);  
}  
' Attributes are not nodes, so will not be returned by DescendantNodes.  
Dim xmlTree As XElement = _   
    <Root Att1="AttributeContent">  
        <Child>  
            <GrandChild>element content</GrandChild>  
        </Child>  
    </Root>  

Dim dnas = From node In xmlTree.DescendantNodes _  
           Select node  

For Each node In dnas  
    If TypeOf node Is XElement Then  
        Console.WriteLine(DirectCast(node, XElement).Name)  
    Else  
        Console.WriteLine(node)  
    End If  
Next  

Bu örnek aşağıdaki çıkışı oluşturur:

Child  
GrandChild  
element content  

Açıklamalar

Özniteliklerin LINQ to XML düğüm olarak kabul edilmediğini, bu nedenle bu yöntem tarafından döndürülen koleksiyonun bir parçası olmayacaklarını unutmayın.

Bu yöntem ertelenmiş yürütmeyi kullanır.

Şunlara uygulanır

Ayrıca bkz.