Applies the specified pattern-matching operation to this node's context and returns the list of matching nodes.
Set objXMLDOMNodeList = oXMLDOMNode.selectNodes(patternString)
HRESULT selectNodes( BSTR patternString, IXMLDOMNodeList **resultList);
For a complete description of XSL Syntax, see XSL Pattern Syntax.
For a complete description of XPath syntax, see the XPath Syntax reference.
The selectSingleNode method is much like the selectNodes method but returns only the first matching node rather than the list of all matching nodes.
The IXMLDOMNodeList is live and immediately reflects changes to the nodes that appear in the list.
IXMLDOMNode Interface | Using the XSLT Processor | Using Collections