Interface INodeList
- Namespace
- AngleSharp.Dom
- Assembly
- AngleSharp.dll
NodeList objects are collections of nodes.
[DomName("NodeList")]
public interface INodeList : IEnumerable<INode>, IEnumerable, IMarkupFormattable
- Inherited Members
- Extension Methods
Properties
this[int]
Returns an item in the list by its index, or throws an exception.
[DomName("item")]
[DomAccessor(Accessors.Getter)]
INode this[int index] { get; }
Parameters
index
intThe 0-based index.
Property Value
- INode
The element at the given index.
Length
Gets the number of nodes in the NodeList.
[DomName("length")]
int Length { get; }