HasAttributeNS Method

WebKit .NET

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

Checks whether the element has an attribute matching 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 bool HasAttributeNS(
	string NamespaceURI,
	string LocalName
)
Visual Basic (Declaration)
Public Function HasAttributeNS ( _
	NamespaceURI As String, _
	LocalName As String _
) As Boolean
Visual C++
public:
bool HasAttributeNS(
	String^ NamespaceURI, 
	String^ LocalName
)

Parameters

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

Return Value

Value indicating whether the element has the specified attribute.

See Also