CreateElementNS Method

WebKit .NET

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

Creates a DOM Element 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 Element CreateElementNS(
	string NamespaceURI,
	string QualifiedName
)
Visual Basic (Declaration)
Public Function CreateElementNS ( _
	NamespaceURI As String, _
	QualifiedName As String _
) As Element
Visual C++
public:
Element^ CreateElementNS(
	String^ NamespaceURI, 
	String^ QualifiedName
)

Parameters

NamespaceURI
Type: System..::.String
Namespace name for the element.
QualifiedName
Type: System..::.String
Name for the element.

Return Value

The new element.

See Also