1 instantiation of XmlDocumentType
dotnet-svcutil-lib (1)
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlDocument.cs (1)
577return new XmlDocumentType(name, publicId, systemId, internalSubset, this);
20 references to XmlDocumentType
dotnet-svcutil-lib (20)
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlDocument.cs (6)
289public virtual XmlDocumentType DocumentType 291get { return (XmlDocumentType)FindChild(XmlNodeType.DocumentType); } 388XmlDocumentType dtd = this.DocumentType; 575public virtual XmlDocumentType CreateDocumentType(string name, string publicId, string systemId, string internalSubset) 934XmlDocumentType docType = (XmlDocumentType)node;
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlLoader.cs (7)
421private XmlDocumentType LoadDocumentTypeNode() 442XmlDocumentType dtNode = _doc.CreateDocumentType(localName, publicId, systemId, internalSubset); 586internal void ParseDocumentType(XmlDocumentType dtNode) 596private void ParseDocumentType(XmlDocumentType dtNode, bool bUseResolver, XmlResolver resolver) 614private void LoadDocumentType(IDtdInfo dtdInfo, XmlDocumentType dtNode) 693XmlDocumentType docType = _doc.DocumentType; 950XmlDocumentType dtdNode = doc.DocumentType;
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlNode.cs (2)
1456XmlDocumentType documentType = (XmlDocumentType)_node;
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlNodeReader.cs (5)
260retValue = ((XmlDocumentType)_curNode).InternalSubset; //in this case nav.Value will be null 432XmlDocumentType docType = _doc.DocumentType; 455public String GetDocumentTypeAttr(XmlDocumentType docType, String name) 505return GetDocumentTypeAttr((XmlDocumentType)_curNode, name); 530return (ns.Length == 0) ? GetDocumentTypeAttr((XmlDocumentType)_curNode, name) : null;