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