Discuss this help topic in SecureBlackbox Forum

TElXMLDOMDocument.GetElementsByTagNameNS

TElXMLDOMDocument     See also     


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


Finds the element(s) with given tag name and namespace URI.

Declaration

[C#]
    TElXMLDOMNodeList GetElementsByTagNameNS(string aNSURi, string aName);

[VB.NET]
    Function GetElementsByTagNameNS(ByVal aNSURi As String, ByVal aName As String) As TElXMLDOMNodeList

[Pascal]
    function GetElementsByTagNameNS(const aNSURi, aName : XMLString) : TElXMLDOMNodeList;

[C++]
    TElXMLDOMNodeListHandle GetElementsByTagNameNS(const sb_u16string &aNSURi, const sb_u16string &aName);
    TElXMLDOMNodeListHandle GetElementsByTagNameNS(const std::wstring &aNSURi, const std::wstring &aName);

[PHP]
    TElXMLDOMNodeList GetElementsByTagNameNS(string $aNSURi, string $aName)

[Java]
    TElXMLDOMNodeList getElementsByTagNameNS(String aNSURi, String aName);

Parameters

  • aNSURI - A namespace URI for the node(s) to find.
  • aName - A tag name of the nodes to find.

Return value

    Returns a list of the desired elements.

Description

    Use this method to find elements with the given tag name and namespace URI. The method returns a node list, which must be disposed of, when the application finishes using it.

See also:     GetElementByID     GetElementsByTagName    

Discuss this help topic in SecureBlackbox Forum