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