RemoveNamedItemNS Method

WebKit .NET

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

Removes the item with the specified namespace and name from the collection.

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

Syntax

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

Parameters

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

Return Value

The removed node.

See Also