NamedNodeMap sealed class NamedNodeMap : INamedNodeMap, IEnumerable<IAttr>, IEnumerable NamedNodeNap is a key/value pair of nodes that can be accessed by numeric or string index. Documentation Code public IAttr this[string name] { get; } public IAttr this[int index] { get; } public int Length { get; } public NamedNodeMap(Element owner) public IEnumerator<IAttr> GetEnumerator() public IAttr GetNamedItem(string name) public IAttr GetNamedItem(string namespaceUri, string localName) public IAttr RemoveNamedItem(string name) public IAttr RemoveNamedItem(string namespaceUri, string localName) public IAttr SetNamedItem(IAttr item) public IAttr SetNamedItemWithNamespaceUri(IAttr item, bool suppressMutationObservers) public IAttr SetNamedItemWithNamespaceUri(IAttr item)