GetAttributeNS Method

WebKit .NET

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

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

Parameters

NamespaceURI
Type: System..::.String
Namespace of the attribute.
LocalName
Type: System..::.String
Name of the attribute.

Return Value

Value of the attribute.

See Also