Interface ICancellable
- Namespace
- AngleSharp.Common
- Assembly
- AngleSharp.dll
Represents a cancellable task without result.
public interface ICancellable
- Extension Methods
Properties
IsCompleted
Gets if the task has already completed.
bool IsCompleted { get; }
Property Value
IsRunning
Gets if the task is (still) running.
bool IsRunning { get; }
Property Value
Methods
Cancel()
Cancels the covered task.
void Cancel()