AngleSharp by Florian Rappl

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

.NET API 385,536 bytes

 HTMLTableSectionElement

public sealed class HTMLTableSectionElement : HTMLElement
Represents the object for HTML table section (thead / tbody / tfoot) elements.
namespace AngleSharp.DOM.Html { public sealed class HTMLTableSectionElement : HTMLElement { internal const string HeadTag = "thead"; internal const string BodyTag = "tbody"; internal const string FootTag = "tfoot"; protected internal override bool IsSpecial => true; internal HTMLTableSectionElement() { _name = "tbody"; } } }