Interface INodeList
- Namespace
- SharpVectors.Dom
- Assembly
- SharpVectors.Core.dll
The INodeList interface provides the abstraction of an ordered collection of nodes, without defining or constraining how this collection is implemented. INodeList objects in the DOM are live.
The items in the INodeList are accessible via an integral
index, starting from 0
.
public interface INodeList
Properties
- Count
Gets the number of nodes in the list. The range of valid child node indices is
0
toCount-1
inclusive.
- this[ulong]
Gets the
index
th item in the collection. Ifindex
is greater than or equal to the number of nodes in the list, this returns null.