Table of Contents

Method CreateDocumentType

Namespace
SharpVectors.Dom
Assembly
SharpVectors.Dom.dll

CreateDocumentType(string, string, string, string)

Returns a new XmlDocumentType object.

public override XmlDocumentType CreateDocumentType(string name, string publicId, string systemId, string internalSubset)

Parameters

name string

Name of the document type.

publicId string

The public identifier of the document type or null. You can specify a public URI and also a system identifier to identify the location of the external DTD subset.

systemId string

The system identifier of the document type or null. Specifies the URL of the file location for the external DTD subset.

internalSubset string

The DTD internal subset of the document type or null.

Returns

XmlDocumentType

The new XmlDocumentType.