IStringList
Represents a string list.
using AngleSharp.Attributes;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.CompilerServices;
namespace AngleSharp.Dom
{
[System.Runtime.CompilerServices.NullableContext(1)]
[DomName("DOMStringList")]
public interface IStringList : IEnumerable<string>, IEnumerable
{
[DomName("item")]
[DomAccessor(Accessors.Getter)]
string this[int index] { get; }
[DomName("length")]
int Length { get; }
[DomName("contains")]
bool Contains(string entry);
}
}