Table of Contents

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

bool

IsRunning

Gets if the task is (still) running.

bool IsRunning { get; }

Property Value

bool

Methods

Cancel()

Cancels the covered task.

void Cancel()