System::Xml::XPath::XPathNavigator::SelectDescendants method
Contents
[
Hide
]XPathNavigator::SelectDescendants(String, String, bool) method
Selects all the descendant nodes of the current node with the local name and namespace URI specified.
virtual SharedPtr<XPathNodeIterator> System::Xml::XPath::XPathNavigator::SelectDescendants(String name, String namespaceURI, bool matchSelf)
Parameter | Type | Description |
---|---|---|
name | String | The local name of the descendant nodes. |
namespaceURI | String | The namespace URI of the descendant nodes. |
matchSelf | bool | true to include the context node in the selection; otherwise, false. |
ReturnValue
An XPathNodeIterator that contains the selected nodes.
See Also
- Typedef SharedPtr
- Class XPathNodeIterator
- Class String
- Class XPathNavigator
- Namespace System::Xml::XPath
- Library Aspose.PUB for C++
XPathNavigator::SelectDescendants(XPathNodeType, bool) method
Selects all the descendant nodes of the current node that have a matching XPathNodeType.
virtual SharedPtr<XPathNodeIterator> System::Xml::XPath::XPathNavigator::SelectDescendants(XPathNodeType type, bool matchSelf)
Parameter | Type | Description |
---|---|---|
type | XPathNodeType | The XPathNodeType of the descendant nodes. |
matchSelf | bool | true to include the context node in the selection; otherwise, false. |
ReturnValue
An XPathNodeIterator that contains the selected nodes.
See Also
- Typedef SharedPtr
- Class XPathNodeIterator
- Enum XPathNodeType
- Class XPathNavigator
- Namespace System::Xml::XPath
- Library Aspose.PUB for C++