XElement.DescendantNodesAndSelf 方法

定義

依照文件順序,傳回包含這個元素的節點集合,以及這個元素的所有子系節點。

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

傳回

IEnumerable<T>XNode,依照文件順序包含這個項目及這個項目的所有子代節點。

範例

下列範例會建立 XML 樹狀結構,然後使用這個 。

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

Dim dnas As IEnumerable(Of XNode) = _
    From node In xmlTree.DescendantNodesAndSelf() _
    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

這個範例會產生下列輸出:

Root
Child
Some text
GrandChild
element content

備註

這個方法會使用延後的執行。

適用於

另請參閱