| DocumentGetElementsByTagNameNS Method |
Returns a NodeList of all the Elements with a given local name and namespace URI in document order.
Namespace: Aspose.Html.DomAssembly: Aspose.HTML (in Aspose.HTML.dll) Version: 20.3
Syntaxpublic HTMLCollection GetElementsByTagNameNS(
string namespaceURI,
string localName
)
Public Function GetElementsByTagNameNS (
namespaceURI As String,
localName As String
) As HTMLCollection
public:
HTMLCollection^ GetElementsByTagNameNS(
String^ namespaceURI,
String^ localName
)
member GetElementsByTagNameNS :
namespaceURI : string *
localName : string -> HTMLCollection
Parameters
- namespaceURI
- Type: SystemString
The namespace URI. - localName
- Type: SystemString
Name of the local.
Return Value
Type:
HTMLCollection
Returns nodes
See Also