Discuss this help topic in SecureBlackbox Forum

TElXMLDOMNode.SelectNodes

TElXMLDOMNode     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Selects nodes by their XPath.

Declaration

[C#]
    TElXMLNodeSet SelectNodes(string XPath);
    TElXMLNodeSet SelectNodes(string XPath, TElXMLNamespaceMap NSMap);

[VB.NET]
    Function SelectNodes(ByVal XPath As String) As TElXMLNodeSet
    Function SelectNodes(ByVal XPath As String, ByVal NSMap As TElXMLNamespaceMap) As TElXMLNodeSet

[Pascal]
    function SelectNodes(XPath : XMLString) : TElXMLNodeSet;
    function SelectNodes(XPath : XMLString; NSMap : TElXMLNamespaceMap) : TElXMLNodeSet;

[C++]
    TElXMLNodeSetHandle SelectNodes(const sb_u16string &XPath);
    TElXMLNodeSetHandle SelectNodes(const std::wstring &XPath);
    TElXMLNodeSetHandle SelectNodes(const sb_u16string &XPath, TElXMLNamespaceMap &NSMap);
    TElXMLNodeSetHandle SelectNodes(const sb_u16string &XPath, TElXMLNamespaceMap *NSMap);
    TElXMLNodeSetHandle SelectNodes(const std::wstring &XPath, TElXMLNamespaceMap &NSMap);
    TElXMLNodeSetHandle SelectNodes(const std::wstring &XPath, TElXMLNamespaceMap *NSMap);

[PHP]
    TElXMLNodeSet SelectNodes(string $XPath)
    TElXMLNodeSet SelectNodes(string $XPath, TElXMLNamespaceMap $NSMap)

[Java]
    TElXMLNodeSet selectNodes(String XPath);
    TElXMLNodeSet selectNodes(String XPath, TElXMLNamespaceMap NSMap);

Parameters

  • XPath - The XPath to the node.
  • NSMap - Namespace map for the XPath. If omitted, namespace map of the owner document is used.

Description

    Use this method to select specific nodes from the list.

See also:     ChildNodes     OwnerDocument    

Discuss this help topic in SecureBlackbox Forum