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