Returns an XmlNodeList containing a list of all descendant elements that match the specified name.
[Visual Basic] Overloads Overridable Public Function GetElementsByTagName( _ ByVal localName As String, _ ByVal namespaceURI As String _ ) As XmlNodeList [C#] public virtual XmlNodeList GetElementsByTagName( string localName, string namespaceURI ); [C++] public: virtual XmlNodeList* GetElementsByTagName( String* localName, String* namespaceURI ); [JScript] public function GetElementsByTagName( localName : String, namespaceURI : String ) : XmlNodeList;
An XmlNodeList containing a list of all matching nodes.
The nodes are placed in the order in which they would be encountered in a preorder traversal of the XmlElement tree.
The same as the simple GetElementsByTagName, except it is matching on localName and namespaceURI instead of on "name" which is prefix and localName.
XmlElement Class | XmlElement Members | System.NewXml Namespace | XmlElement.GetElementsByTagName Overload List