Item Property (String, String)

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 this[
	string NSURI,
	string localName
] { get; }
Visual Basic (Declaration)
Public ReadOnly Default Property Item ( _
	NSURI As String, _
	localName As String _
) As Node
Visual C++
public:
property Node^ default[String^ NSURI, String^ localName] {
	Node^ get (String^ NSURI, String^ localName);
}

Parameters

NSURI
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