System::Xml::XPath::XPathNavigator::SelectChildren method

XPathNavigator::SelectChildren(XPathNodeType) method

Selects all the child nodes of the current node that have the matching XPathNodeType.

virtual SharedPtr<XPathNodeIterator> System::Xml::XPath::XPathNavigator::SelectChildren(XPathNodeType type)
ParameterTypeDescription
typeXPathNodeTypeThe XPathNodeType of the child nodes.

ReturnValue

An XPathNodeIterator that contains the selected nodes.

See Also

XPathNavigator::SelectChildren(String, String) method

Selects all the child nodes of the current node that have the local name and namespace URI specified.

virtual SharedPtr<XPathNodeIterator> System::Xml::XPath::XPathNavigator::SelectChildren(String name, String namespaceURI)
ParameterTypeDescription
nameStringThe local name of the child nodes.
namespaceURIStringThe namespace URI of the child nodes.

ReturnValue

An XPathNodeIterator that contains the selected nodes.

See Also