AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="0.16.0" />

.NET API 879,104 bytes

 INamedNodeMap

NamedNodeNap is a key/value pair of nodes that can be accessed by numeric or string index. https://dom.spec.whatwg.org/#interface-namednodemap
IAttr this[int index] { get; }

Gets the node at the specified numeric index.

IAttr this[string name] { get; }

Gets the node with the specified name.

int Length { get; }

Gets the number of nodes in the NamedNodeMap.

IAttr GetNamedItem(string name)

Gets a named item in the NamedNodeMap.

IAttr GetNamedItem(string namespaceUri, string localName)

Gets a named item in the NamedNodeMap identified by namespace and local name.

IAttr RemoveNamedItem(string name)

Removes a named item from the NamedNodeMap

IAttr RemoveNamedItem(string namespaceUri, string localName)

Removes a named item from the NamedNodeMap.

Sets a named item in the NamedNodeMap.

Sets a named item in the NamedNodeMap.