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)));
1095
newNode = new
XDocumentType
(r.LocalName, r.GetAttribute("PUBLIC"), r.GetAttribute("SYSTEM"), r.Value);
1211
newNode = new
XDocumentType
(r.LocalName, r.GetAttribute("PUBLIC"), r.GetAttribute("SYSTEM"), await r.GetValueAsync().ConfigureAwait(false));
System\Xml\Linq\XNode.cs (1)
498
ret = new
XDocumentType
(name, publicId, systemId, internalSubset);
System\Xml\Linq\XNodeBuilder.cs (1)
86
AddNode(new
XDocumentType
(name, pubid, sysid, subset));