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

Cretaes an attribute node with the specified name and namespace.

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

Syntax

C#
public Attr CreateAttributeNS(
	string NamespaceURI,
	string Name
)
Visual Basic (Declaration)
Public Function CreateAttributeNS ( _
	NamespaceURI As String, _
	Name As String _
) As Attr
Visual C++
public:
Attr^ CreateAttributeNS(
	String^ NamespaceURI, 
	String^ Name
)

Parameters

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

Return Value

The new attribute node.

See Also