XmlDocument.GetElementsByTagName Method
| Explanation | Search for Element nodes by tag name to get a list of matching Element nodes. | |
| Call format | var list = xmldoc.GetElementsByTagName( tagName ) | |
| Return value | XmlNodeList object containing an Element node with a tag name that matches the condition. If not found, an empty XmlNodeList object is returned. | |
| Arguments | String tagName | Tag name to be searched |
| Exception | None | |
| Example of use | | |
| Related item | XmlNodeList, XmlElement classes GetElementsByTagNameNS, GetElementById methods | |