AngleSharp by Florian Rappl

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

 IScriptEngine

public interface IScriptEngine
Defines the API of an available engine for running scripts provided in the code.
string Type { get; }

The type of the scripting language.

void Evaluate(string source, ScriptOptions options)

Evaluates the given source with the specified options.

void Evaluate(IResponse response, ScriptOptions options)

Evaluates a script that emerges from the network response with the specified options.