AngleSharp by Florian Rappl

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

.NET API 504,832 bytes

 HTMLFrameElement

public sealed class HTMLFrameElement : HTMLFrameElementBase
Represents the HTML frame element.
namespace AngleSharp.DOM.Html { [DOM("HTMLFrameElement")] public sealed class HTMLFrameElement : HTMLFrameElementBase { internal const string Tag = "frame"; [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"; } } }