6 references to XDocumentType
System.Private.Xml.Linq (6)
System\Xml\Linq\XContainer.cs (4)
941_currentContainer.AddNodeSkipNotify(new XDocumentType(r.LocalName, r.GetAttribute("PUBLIC"), r.GetAttribute("SYSTEM"), r.Value)); 997_currentContainer.AddNodeSkipNotify(new XDocumentType(r.LocalName, r.GetAttribute("PUBLIC"), r.GetAttribute("SYSTEM"), await r.GetValueAsync().ConfigureAwait(false))); 1095newNode = new XDocumentType(r.LocalName, r.GetAttribute("PUBLIC"), r.GetAttribute("SYSTEM"), r.Value); 1211newNode = new XDocumentType(r.LocalName, r.GetAttribute("PUBLIC"), r.GetAttribute("SYSTEM"), await r.GetValueAsync().ConfigureAwait(false));
System\Xml\Linq\XNode.cs (1)
498ret = new XDocumentType(name, publicId, systemId, internalSubset);
System\Xml\Linq\XNodeBuilder.cs (1)
86AddNode(new XDocumentType(name, pubid, sysid, subset));