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

Adds a new attribute with the specified namespace, name and value.

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

Syntax

C#
public void SetAttributeNS(
	string NamespaceURI,
	string QualifiedName,
	string Value
)
Visual Basic (Declaration)
Public Sub SetAttributeNS ( _
	NamespaceURI As String, _
	QualifiedName As String, _
	Value As String _
)
Visual C++
public:
void SetAttributeNS(
	String^ NamespaceURI, 
	String^ QualifiedName, 
	String^ Value
)

Parameters

NamespaceURI
Type: System..::.String
Namespace of the attribute.
QualifiedName
Type: System..::.String
Name of the attribute.
Value
Type: System..::.String
Value of the attribute.

See Also