CreateDocument Method

WebKit .NET

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

Creates a new DOM Document of the specified doctype.

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

Syntax

C#
public Document CreateDocument(
	string NamespaceURI,
	string QualifiedName,
	DocumentType DocType
)
Visual Basic (Declaration)
Public Function CreateDocument ( _
	NamespaceURI As String, _
	QualifiedName As String, _
	DocType As DocumentType _
) As Document
Visual C++
public:
Document^ CreateDocument(
	String^ NamespaceURI, 
	String^ QualifiedName, 
	DocumentType^ DocType
)

Parameters

NamespaceURI
Type: System..::.String
Namespace URI.
QualifiedName
Type: System..::.String
Qualified Name.
DocType
Type: WebKit.DOM..::.DocumentType
Type of the document.

Return Value

[Missing <returns> documentation for "M:WebKit.DOM.DocumentImpl.CreateDocument(System.String,System.String,WebKit.DOM.DocumentType)"]

See Also