GetNamedItemNS Method

WebKit .NET

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

Gets the item 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 Node GetNamedItemNS(
	string NamespaceURI,
	string LocalName
)
Visual Basic (Declaration)
Public Function GetNamedItemNS ( _
	NamespaceURI As String, _
	LocalName As String _
) As Node
Visual C++
public:
Node^ GetNamedItemNS(
	String^ NamespaceURI, 
	String^ LocalName
)

Parameters

NamespaceURI
Type: System..::.String
Namespace of the item to get.
LocalName
Type: System..::.String
Name of the item to get.

Return Value

Node with the specified namespace and name.

See Also