AngleSharp by AngleSharp

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

 ICancellable

public interface ICancellable
Represents a cancellable task without result.
namespace AngleSharp { public interface ICancellable { bool IsCompleted { get; } bool IsRunning { get; } void Cancel(); } }