AngleSharp by Florian Rappl

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

.NET API 521,216 bytes

 HTMLNoElement

sealed class HTMLNoElement : HTMLElement
Represents a no* HTML element (noembed, noscript, noframes).
namespace AngleSharp.DOM.Html { internal sealed class HTMLNoElement : HTMLElement { internal const string NoEmbedTag = "noembed"; internal const string NoScriptTag = "noscript"; internal const string NoFramesTag = "noframes"; protected internal override bool IsSpecial => true; internal HTMLNoElement() { _name = "noscript"; } } }