AngleSharp by Florian Rappl

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

.NET API 371,712 bytes

 HTMLScriptElement

Represents an HTML script element.
namespace AngleSharp.DOM.Html { public class HTMLScriptElement : HTMLRawtextElement { public const string Tag = "script"; internal bool IsAsyncForced { get; set; } internal bool IsParserInserted { get; set; } internal bool IsAlreadyStarted { get; set; } public string Src { get; set; } public string Type { get; set; } public string Charset { get; set; } public bool Async { get; set; } public bool Defer { get; set; } public CORSSettings CrossOrigin { get; set; } public string Text { get { return TextContent; } set { TextContent = value; } } protected internal override bool IsSpecial => true; public HTMLScriptElement() { base.NodeName = "script"; IsAsyncForced = true; } internal void Prepare() { } internal void Execute() { } } }