Table of Contents

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 string

The 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 string

The local name to match. The asterisk (*) is a special value that matches all tags.

namespaceURI string

The namespace URI to match.

Returns

XmlNodeList

An XmlNodeList containing a list of all matching nodes.

See Also