XNode.ElementsAfterSelf Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Returns a collection of the sibling elements after this node, in document order.
Assembly: System.Xml.Linq (in System.Xml.Linq.dll)
Return Value
Type: System.Collections.Generic.IEnumerable(Of XElement)An IEnumerable(Of T) of XElement of the sibling elements after this node, in document order.
The following example creates an element with some complex content. It then uses this method to retrieve the nodes in document order.
Dim output As New StringBuilder Dim xmlTree As XElement = _ <Root>Text content. <Child1>child1 content</Child1> <Child2>child2 content</Child2> <Child3>child3 content</Child3>More text content. <Child4>child4 content</Child4> <Child5>child5 content</Child5> </Root> Dim child As XElement = xmlTree.<Child3>(0) Dim elements As IEnumerable(Of XElement) = child.ElementsAfterSelf() For Each el In elements output.Append(el.Name) output.Append(Environment.NewLine) Next OutputTextBlock.Text = output.ToString()
Show: