GetElementsByTagNameNS Method

WebKit .NET

[This is preliminary documentation and is subject to change.]

Returns a collection containing all elements with the specified namespace and name.

Namespace:  WebKit.DOM
Assembly:  WebKitBrowser (in WebKitBrowser.dll) Version: 0.5.0.0 (0.5.0.0)

Syntax

C#
public NodeList GetElementsByTagNameNS(
	string NamespaceURI,
	string LocalName
)
Visual Basic (Declaration)
Public Function GetElementsByTagNameNS ( _
	NamespaceURI As String, _
	LocalName As String _
) As NodeList
Visual C++
public:
NodeList^ GetElementsByTagNameNS(
	String^ NamespaceURI, 
	String^ LocalName
)

Parameters

NamespaceURI
Type: System..::.String
The namespace of the elements.
LocalName
Type: System..::.String
The name of the elements.

Return Value

A NodeList containing all elements with the specified namespace and name.

See Also