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