AngleSharp by Florian Rappl

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

.NET API 1,172,480 bytes

 HtmlFrameElement

Represents the HTML frame element.
using AngleSharp.Extensions; using AngleSharp.Html; namespace AngleSharp.Dom.Html { internal sealed class HtmlFrameElement : HtmlFrameElementBase { public bool NoResize { get { return GetAttribute(AttributeNames.NoResize).ToBoolean(false); } set { SetAttribute(AttributeNames.NoResize, value.ToString()); } } public HtmlFrameElement(Document owner) : base(owner, Tags.Frame, NodeFlags.SelfClosing) { } } }