CancellationTokenSource.IsCancellationRequested Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets whether cancellation has been requested for this CancellationTokenSource.
public:
property bool IsCancellationRequested { bool get(); };
public bool IsCancellationRequested { get; }
member this.IsCancellationRequested : bool
Public ReadOnly Property IsCancellationRequested As Boolean
Property Value
true
if cancellation has been requested for this CancellationTokenSource; otherwise, false
.
Remarks
This property indicates whether cancellation has been requested for this token source, such as due to a call to its Cancel method.
If this property returns true
, it only guarantees that cancellation has been requested. It does not guarantee that every handler registered with the corresponding token 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.