AngleSharp by AngleSharp

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

 IScriptingService

public interface IScriptingService
Defines the API of an available engine for running scripts provided in the code.
using AngleSharp.Io; using System.Runtime.CompilerServices; using System.Threading; using System.Threading.Tasks; namespace AngleSharp.Scripting { [NullableContext(1)] public interface IScriptingService { bool SupportsType(string mimeType); Task EvaluateScriptAsync(IResponse response, ScriptOptions options, CancellationToken cancel); } }