6 references to CreateDocumentType
System.Data.Common (1)
System\Xml\XmlDataDocument.cs (1)
1060
XmlNodeType.DocumentType =>
CreateDocumentType
(dp.Name, dp.PublicId, dp.SystemId, dp.InternalSubset),
System.Private.Xml (5)
System\Xml\Dom\DocumentXmlWriter.cs (1)
153
XmlNode node = _document.
CreateDocumentType
(name, pubid, sysid, subset);
System\Xml\Dom\XmlDocument.cs (2)
1000
newNode =
CreateDocumentType
(docType.Name, docType.PublicId, docType.SystemId, docType.InternalSubset);
1149
return
CreateDocumentType
(name, string.Empty, string.Empty, string.Empty);
System\Xml\Dom\XmlDocumentType.cs (1)
62
return OwnerDocument.
CreateDocumentType
(_name, _publicId, _systemId, _internalSubset);
System\Xml\Dom\XmlLoader.cs (1)
438
XmlDocumentType dtNode = _doc!.
CreateDocumentType
(localName, publicId, systemId, internalSubset);