SelectNodes()
Contents
[
Hide
]XmlNode::SelectNodes(const String&) method
Selects a list of nodes matching the XPath expression.
SharedPtr<XmlNodeList> System::Xml::XmlNode::SelectNodes(const String &xpath)
Arguments
Parameter | Type | Description |
---|---|---|
xpath | const String& | The XPath expression. |
Return Value
An XmlNodeList containing a collection of nodes matching the XPath query.
XmlNode::SelectNodes(const String&, const SharedPtr<XmlNamespaceManager>&) method
Selects a list of nodes matching the XPath expression. Any prefixes found in the XPath expression are resolved using the supplied XmlNamespaceManager.
SharedPtr<XmlNodeList> System::Xml::XmlNode::SelectNodes(const String &xpath, const SharedPtr<XmlNamespaceManager> &nsmgr)
Arguments
Parameter | Type | Description |
---|---|---|
xpath | const String& | The XPath expression. |
nsmgr | const SharedPtr<XmlNamespaceManager>& | An XmlNamespaceManager to use for resolving namespaces for prefixes in the XPath expression. |
Return Value
An XmlNodeList containing a collection of nodes matching the XPath query.
See Also
- Typedef SharedPtr
- Class XmlNodeList
- Class String
- Class XmlNode
- Class XmlNamespaceManager
- Namespace System::Xml
- Library Aspose.Slides