System.Threading.CancellationToken.IsCancellationRequested Property

Gets whether cancellation has been requested for this token.

Syntax

public bool IsCancellationRequested { get; }

Value

Documentation for this section has not yet been entered.

Remarks

This property indicates whether cancellation has been requested for this token, either through the token initially being constructed in a canceled state, or through calling CancellationTokenSource.Cancel on the token's associated System.Threading.CancellationTokenSource.

If this property is true, it only guarantees that cancellation has been requested.

It does not guarantee that every registered handler has finished executing, nor that cancellation requests have finished propagating to all registered handlers. Additional synchronization may be required, particularly in situations where related objects are being canceled concurrently.

Requirements

Namespace: System.Threading
Assembly: mscorlib (in mscorlib.dll)
Assembly Versions: 4.0.0.0