Element.GetElementsByTagNameNS

Element.GetElementsByTagNameNS method

Returns HTMLCollection object containing all elements with a given local name and namespace URI string in document order.

public HTMLCollection GetElementsByTagNameNS(string namespaceURI, string localName)
ParameterTypeDescription
namespaceURIStringThe namespace URI string representation.
localNameStringString representation of local name.

Return Value

A live HTMLCollection of found elements.

Remarks

Refer to official spec.

See Also