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);
}
}