4 references to XmlNamedNodeMap
System.Private.Xml (4)
System\Xml\Dom\XmlAttributeCollection.cs (1)
13internal XmlAttributeCollection(XmlNode parent) : base(parent)
System\Xml\Dom\XmlDocument.cs (1)
1093get => _entities ??= new XmlNamedNodeMap(this);
System\Xml\Dom\XmlDocumentType.cs (2)
79public XmlNamedNodeMap Entities => _entities ??= new XmlNamedNodeMap(this); 82public XmlNamedNodeMap Notations => _notations ??= new XmlNamedNodeMap(this);