Method GetElementsByTagName
- Namespace
- SharpVectors.Dom
- Assembly
- SharpVectors.Core.dll
GetElementsByTagName(string)
Returns an XmlNodeList containing a list of all descendant elements that match the specified Name.
XmlNodeList GetElementsByTagName(string name)
Parameters
name
stringThe name tag to match. This is a qualified name. It is matched against the Name property of the matching node. The asterisk (*) is a special value that matches all tags.
Returns
- XmlNodeList
An XmlNodeList containing a list of all matching nodes.
- See Also
GetElementsByTagName(string, string)
Returns an XmlNodeList containing a list of all descendant elements that match the specified LocalName and NamespaceURI.
XmlNodeList GetElementsByTagName(string localName, string namespaceURI)
Parameters
localName
stringThe local name to match. The asterisk (*) is a special value that matches all tags.
namespaceURI
stringThe namespace URI to match.
Returns
- XmlNodeList
An XmlNodeList containing a list of all matching nodes.
- See Also