IHtmlFormControlsCollection
Represents a collection of HTML form controls.
using System.Collections;
using System.Collections.Generic;
namespace AngleSharp.DOM.Html
{
[DomName("HTMLFormControlsCollection")]
public interface IHtmlFormControlsCollection : IHtmlCollection, IEnumerable<IElement>, IEnumerable
{
}
}