I want to select a node together with all child nodes from an XML document that I have loaded. What method whould I use to get, for example below, <item2>
and all child nodes (child 2.1,2.2,2.3)?
<xmldoc>
<item1>
<child1.1>
<child1.2>
<child1.3>
</item1>
<item2>
<child2.1>
<child2.2>
<child2.3>
</item2>
</xmldoc>