Table of Contents

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 to Count-1 inclusive.

this[ulong]

Gets the indexth item in the collection. If index is greater than or equal to the number of nodes in the list, this returns null.

See Also