SelectChildren()

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)

Arguments

ParameterTypeDescription
typeXPathNodeTypeThe XPathNodeType of the child nodes.

Return Value

An XPathNodeIterator that contains the selected nodes.

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)

Arguments

ParameterTypeDescription
nameStringThe local name of the child nodes.
namespaceURIStringThe namespace URI of the child nodes.

Return Value

An XPathNodeIterator that contains the selected nodes.

See Also