AngleSharp by Florian Rappl

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

 IScriptEngine

public interface IScriptEngine
Defines the API of an available engine for running scripts provided in the code.
using AngleSharp.Network; namespace AngleSharp.Services.Scripting { public interface IScriptEngine { string Type { get; } void Evaluate(string source, ScriptOptions options); void Evaluate(IResponse response, ScriptOptions options); } }