IDOMImplementationCreateDocumentType Method
Creates an empty DocumentType node. Entity declarations and notations are not made available. Entity reference expansions and default attribute additions do not occur.

Namespace: Aspose.Html.Dom
Assembly: Aspose.HTML (in Aspose.HTML.dll) Version: 20.3
Syntax
DocumentType CreateDocumentType(
	string qualifiedName,
	string publicId,
	string systemId
)

Parameters

qualifiedName
Type: SystemString
Name of the qualified.
publicId
Type: SystemString
The public id.
systemId
Type: SystemString
The system id.

Return Value

Type: DocumentType
The DocumentType.
See Also