1 type derived from XmlNamedNodeMap
System.Private.Xml (1)
System\Xml\Dom\XmlAttributeCollection.cs (1)
11public sealed class XmlAttributeCollection : XmlNamedNodeMap, ICollection
3 instantiations of XmlNamedNodeMap
System.Private.Xml (3)
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);
12 references to XmlNamedNodeMap
netstandard (1)
netstandard.cs (1)
2479[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.XmlNamedNodeMap))]
System.Private.Xml (8)
System\Xml\Dom\XmlDocument.cs (3)
77private XmlNamedNodeMap? _entities; 1091internal XmlNamedNodeMap Entities 1731XmlNamedNodeMap entities = DocumentType.Entities;
System\Xml\Dom\XmlDocumentType.cs (4)
17private XmlNamedNodeMap? _entities; 18private XmlNamedNodeMap? _notations; 79public XmlNamedNodeMap Entities => _entities ??= new XmlNamedNodeMap(this); 82public XmlNamedNodeMap Notations => _notations ??= new XmlNamedNodeMap(this);
System\Xml\Dom\XmlLoader.cs (1)
904XmlNamedNodeMap entities = _doc.Entities;
System.Xml (1)
System.Xml.cs (1)
209[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.XmlNamedNodeMap))]
System.Xml.ReaderWriter (1)
artifacts\obj\System.Xml.ReaderWriter\Debug\net9.0\System.Xml.ReaderWriter.Forwards.cs (1)
136[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.XmlNamedNodeMap))]
System.Xml.XmlDocument (1)
System.Xml.XmlDocument.cs (1)
15[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.XmlNamedNodeMap))]