AngleSharp by Florian Rappl

<PackageReference Include="AngleSharp" Version="0.8.2" />

.NET API 1,168,384 bytes

 IHtmlTableSectionElement

Represent the base of table section (tbody, thead, tfoot) elements.
using AngleSharp.Attributes; using AngleSharp.Dom.Css; namespace AngleSharp.Dom.Html { [DomName("HTMLTableSectionElement")] public interface IHtmlTableSectionElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle { [DomName("rows")] IHtmlCollection<IHtmlTableRowElement> Rows { get; } [DomName("insertRow")] IHtmlTableRowElement InsertRowAt(int index = -1); [DomName("deleteRow")] void RemoveRowAt(int index); } }