AngleSharp by AngleSharp

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

 IScriptEngine

public interface IScriptEngine
Defines the API of an available engine for running scripts provided in the code.
using AngleSharp.Network; using System.Threading; using System.Threading.Tasks; namespace AngleSharp.Services.Scripting { public interface IScriptEngine { string Type { get; } Task EvaluateScriptAsync(IResponse response, ScriptOptions options, CancellationToken cancel); } }