6 references to CreateDocumentType
System.Data (1)
fx\src\data\System\NewXml\XmlDataDocument.cs (1)
961
return this.
CreateDocumentType
( dp.Name, dp.PublicId, dp.SystemId, dp.InternalSubset );
System.Xml (5)
System\Xml\Dom\DocumentXmlWriter.cs (1)
140
XmlNode node = document.
CreateDocumentType
(name, pubid, sysid, subset);
System\Xml\Dom\XmlDocument.cs (2)
825
newNode =
CreateDocumentType
( docType.Name, docType.PublicId, docType.SystemId, docType.InternalSubset );
964
return
CreateDocumentType
( name, string.Empty, string.Empty, string.Empty );
System\Xml\Dom\XmlDocumentType.cs (1)
59
return OwnerDocument.
CreateDocumentType
( name, publicId, systemId, internalSubset );
System\Xml\Dom\XmlLoader.cs (1)
386
XmlDocumentType dtNode = doc.
CreateDocumentType
( localName, publicId, systemId, internalSubset );