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