AngleSharp by AngleSharp

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

 ScriptOptions

public sealed class ScriptOptions
Transport object for running scripts.
using AngleSharp.Browser; using AngleSharp.Dom; using AngleSharp.Html.Dom; using System.Runtime.CompilerServices; using System.Text; namespace AngleSharp.Scripting { [NullableContext(2)] [Nullable(0)] public sealed class ScriptOptions { [Nullable(1)] [field: Nullable(1)] public IEventLoop EventLoop { [NullableContext(1)] get; } [Nullable(1)] [field: Nullable(1)] public IDocument Document { [NullableContext(1)] get; } public IHtmlScriptElement Element { get; set; } public Encoding Encoding { get; set; } [NullableContext(1)] public ScriptOptions(IDocument document, IEventLoop loop) { Document = document; EventLoop = loop; } } }