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
stringName of the document type.
publicId
stringThe 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
stringThe system identifier of the document type or null. Specifies the URL of the file location for the external DTD subset.
internalSubset
stringThe DTD internal subset of the document type or null.
Returns
- XmlDocumentType
The new XmlDocumentType.