ICssRuleList
Represents a list of CSS rules.
using AngleSharp.Attributes;
using System.Collections;
using System.Collections.Generic;
namespace AngleSharp.Dom.Css
{
[DomName("CSSRuleList")]
public interface ICssRuleList : IEnumerable<ICssRule>, IEnumerable
{
[DomName("item")]
ICssRule this[int index] { get; }
[DomName("length")]
int Length { get; }
}
}