NamedNodeMap Class
Represents collections of attributes that can be accessed by name.
Inheritance Hierarchy
SystemObject
  Aspose.Svg.DomDOMObject
    Aspose.Svg.CollectionsNamedNodeMap

Namespace: Aspose.Svg.Collections
Assembly: Aspose.SVG (in Aspose.SVG.dll) Version: 20.2
Syntax
public class NamedNodeMap : DOMObject, 
	IEnumerable<Attr>, IEnumerable, IDisposable

The NamedNodeMap type exposes the following members.

Properties
  NameDescription
Public propertyItemInt32
Returns the index-th item in the map. If index is greater than or equal to the number of nodes in this map, this returns null.
Public propertyItemString
Gets the Attr with the specified name.
Public propertyLength
The number of nodes in this map.
Methods
  NameDescription
Public methodEquals (Inherited from Object.)
Protected methodFinalize (Inherited from Object.)
Public methodGetEnumerator
Returns an enumerator that iterates through the collection.
Public methodGetHashCode (Inherited from Object.)
Public methodGetNamedItem
Retrieves a node specified by name.
Public methodGetNamedItemNS
Retrieves a node specified by local name and namespace URI.
Public methodGetType (Inherited from Object.)
Protected methodMemberwiseClone (Inherited from Object.)
Public methodRemoveNamedItem
Removes a node specified by name.
Public methodRemoveNamedItemNS
Removes a node specified by local name and namespace URI.
Public methodSetNamedItem
Adds a node using its nodeName attribute. If a node with that name is already present in this map, it is replaced by the new one. Replacing a node by itself has no effect.
Public methodSetNamedItemNS
Adds a node using its namespaceURI and localName. If a node with that namespace URI and that local name is already present in this map, it is replaced by the new one. Replacing a node by itself has no effect.
Public methodToString (Inherited from Object.)
See Also

Reference

System.Collections.GenericIEnumerableT