AngleSharp by Florian Rappl

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

.NET API 559,104 bytes

 HTMLFrameElement

public sealed class HTMLFrameElement : HTMLFrameElementBase
Represents the HTML frame element.
namespace AngleSharp.DOM.Html { [DOM("HTMLFrameElement")] public sealed class HTMLFrameElement : HTMLFrameElementBase { [DOM("noResize")] public bool NoResize { get { return Element.ToBoolean(GetAttribute("noresize"), false); } set { SetAttribute("noresize", value.ToString()); } } protected internal override bool IsSpecial => true; internal HTMLFrameElement() { _name = "frame"; } } }