AngleSharp by Florian Rappl

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

.NET API 844,288 bytes

 HTMLScriptElement

Represents an HTML script element.
using AngleSharp.DOM.Css; using AngleSharp.Infrastructure; using System; using System.IO; using System.Threading.Tasks; namespace AngleSharp.DOM.Html { internal sealed class HTMLScriptElement : HTMLElement, IHtmlScriptElement, IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle { private bool _started; private bool _parserInserted; private bool _wasParserInserted; private bool _forceAsync; private bool _readyToBeExecuted; private Task<Stream> _load; public string ScriptLanguage { get { string text = Type ?? ((GetAttribute(AttributeNames.Language) != null) ? ("text/" + GetAttribute(AttributeNames.Language)) : null); if (string.IsNullOrEmpty(text)) return MimeTypes.DefaultJavaScript; return text; } } public string Source { get { return GetAttribute(AttributeNames.Src); } set { SetAttribute(AttributeNames.Src, value); } } public string Type { get { return GetAttribute(AttributeNames.Type); } set { SetAttribute(AttributeNames.Type, value); } } public string CharacterSet { get { return GetAttribute(AttributeNames.Charset); } set { SetAttribute(AttributeNames.Charset, value); } } public string Text { get { return TextContent; } set { TextContent = value; } } public string CrossOrigin { get { return GetAttribute(AttributeNames.CrossOrigin); } set { SetAttribute(AttributeNames.CrossOrigin, value); } } public bool IsDeferred { get { return GetAttribute(AttributeNames.Defer) != null; } set { SetAttribute(AttributeNames.Defer, value ? string.Empty : null); } } public bool IsAsync { get { return GetAttribute(AttributeNames.Async) != null; } set { SetAttribute(AttributeNames.Async, value ? string.Empty : null); } } protected internal override bool IsSpecial => true; internal HTMLScriptElement() { _name = "script"; } internal void Run() { if (_load != null) { if (_load.Exception != null || _load.IsFaulted) FireSimpleEvent(EventNames.Error, false, false); else if (!FireSimpleEvent(EventNames.BeforeScriptExecute, false, true)) { base.Owner.Options.RunScript(_load.Result, CreateOptions(), ScriptLanguage); FireSimpleEvent(EventNames.AfterScriptExecute, true, false); if (Source != null) FireSimpleEvent(EventNames.Load, false, false); else base.Owner.QueueTask(delegate { FireSimpleEvent(EventNames.Load, false, false); }); } } } private void CreateScript() { } internal void Prepare() { if (!_started) { _wasParserInserted = _parserInserted; _parserInserted = false; _forceAsync = (_wasParserInserted && !IsAsync); if ((!string.IsNullOrEmpty(Source) || !string.IsNullOrEmpty(Text)) && base.Owner != null && base.Owner.Options.GetScriptEngine(ScriptLanguage) != null) { if (_wasParserInserted) { _parserInserted = true; _forceAsync = false; } _started = true; if (base.Owner.Options.IsScripting) { string attribute = GetAttribute(AttributeNames.Event); string attribute2 = GetAttribute(AttributeNames.For); if (!string.IsNullOrEmpty(attribute) && !string.IsNullOrEmpty(attribute2)) { attribute = attribute.Trim(); attribute2 = attribute2.Trim(); if (attribute.EndsWith("()")) attribute = attribute.Substring(0, attribute.Length - 2); if (!attribute2.Equals("window", StringComparison.OrdinalIgnoreCase) || !attribute.Equals("onload", StringComparison.OrdinalIgnoreCase)) return; } string source = Source; if (source != null) { if (source == string.Empty) base.Owner.QueueTask(delegate { FireSimpleEvent(EventNames.Error, false, false); }); else { source = HyperRef(source); if (_parserInserted && !IsAsync) { bool isDeferred = IsDeferred; PlaceNetworkTask(source); } else if (!IsAsync && !_forceAsync) { return; } } } else if (_parserInserted) { _readyToBeExecuted = true; } else { base.Owner.Options.RunScript(Text, CreateOptions(), ScriptLanguage); } } } } } private ScriptOptions CreateOptions() { ScriptOptions scriptOptions = new ScriptOptions(); scriptOptions.Context = null; scriptOptions.Document = base.Owner; scriptOptions.Element = this; return scriptOptions; } private void PlaceNetworkTask(string url) { } } }