NamedNodeMap.Item

NamedNodeMap indexer (1 of 2)

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 Attr this[int index] { get; }
ParameterDescription
indexThe index.

Return Value

Returns node.

Property Value

The Attr.

See Also


NamedNodeMap indexer (2 of 2)

Gets the Attr with the specified name.

public Attr this[string name] { get; }
ParameterDescription
nameThe attribute name.

Return Value

Returns node.

Property Value

The Attr.

See Also