AngleSharp by Florian Rappl

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

.NET API 1,171,968 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) { } } }