XNode.Ancestors Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Restituisce una raccolta di elementi predecessori del nodo.
Overload
Ancestors() |
Restituisce una raccolta di elementi predecessori del nodo. |
Ancestors(XName) |
Restituisce una raccolta filtrata di elementi predecessori del nodo. Solo gli elementi che hanno un oggetto XName corrispondente vengono inclusi nella raccolta. |
Commenti
Facoltativamente, è possibile specificare un nome di nodo per filtrare gli elementi predecessori con un nome specifico.
I nodi della raccolta restituita nell'ordine inverso del documento.
Questo metodo usa l'esecuzione posticipata.
Ancestors()
Restituisce una raccolta di elementi predecessori del nodo.
public:
System::Collections::Generic::IEnumerable<System::Xml::Linq::XElement ^> ^ Ancestors();
public System.Collections.Generic.IEnumerable<System.Xml.Linq.XElement> Ancestors ();
member this.Ancestors : unit -> seq<System.Xml.Linq.XElement>
Public Function Ancestors () As IEnumerable(Of XElement)
Restituisce
IEnumerable<T> di XElement degli elementi del predecessore di questo nodo.
Esempio
Nell'esempio seguente viene usato questo metodo per enumerare i predecessori di un nodo.
XElement xmlTree = new XElement("Root",
new XElement("Child",
new XElement("GrandChild", "content")
)
);
IEnumerable<XElement> grandChild = xmlTree.Descendants("GrandChild");
foreach (XElement el in grandChild.Ancestors())
Console.WriteLine(el.Name);
Dim xmlTree As XElement = _
<Root>
<Child>
<GrandChild>content</GrandChild>
</Child>
</Root>
Dim grandChild As IEnumerable(Of XElement) = xmlTree...<GrandChild>
For Each el In grandChild.Ancestors()
Console.WriteLine(el.Name)
Next
Nell'esempio viene prodotto l'output seguente:
Child
Root
Commenti
Questo metodo non restituisce se stesso nei risultati.
I nodi della raccolta restituita nell'ordine inverso del documento.
Questo metodo usa l'esecuzione posticipata.
Vedi anche
Si applica a
Ancestors(XName)
Restituisce una raccolta filtrata di elementi predecessori del nodo. Solo gli elementi che hanno un oggetto XName corrispondente vengono inclusi nella raccolta.
public:
System::Collections::Generic::IEnumerable<System::Xml::Linq::XElement ^> ^ Ancestors(System::Xml::Linq::XName ^ name);
public System.Collections.Generic.IEnumerable<System.Xml.Linq.XElement> Ancestors (System.Xml.Linq.XName name);
public System.Collections.Generic.IEnumerable<System.Xml.Linq.XElement> Ancestors (System.Xml.Linq.XName? name);
member this.Ancestors : System.Xml.Linq.XName -> seq<System.Xml.Linq.XElement>
Public Function Ancestors (name As XName) As IEnumerable(Of XElement)
Parametri
Restituisce
IEnumerable<T> di XElement degli elementi del predecessore di questo nodo. Solo gli elementi che hanno un oggetto XName corrispondente vengono inclusi nella raccolta.
I nodi della raccolta restituita nell'ordine inverso del documento.
Questo metodo usa l'esecuzione posticipata.
Esempio
Nell'esempio seguente viene utilizzato questo metodo.
XElement xmlTree = new XElement("Root",
new XElement("Child",
new XElement("GrandChild", "content")
)
);
IEnumerable<XElement> grandChild = xmlTree.Descendants("GrandChild");
foreach (XElement el in grandChild.Ancestors("Child"))
Console.WriteLine(el.Name);
Dim xmlTree As XElement = _
<Root>
<Child>
<GrandChild>content</GrandChild>
</Child>
</Root>
Dim grandChild As IEnumerable(Of XElement) = xmlTree...<GrandChild>
For Each el In grandChild.Ancestors("Child")
Console.WriteLine(el.Name)
Next
Nell'esempio viene prodotto l'output seguente:
Child
Commenti
Questo metodo non restituirà se stesso nei risultati.