CancellationToken.IsCancellationRequested Property
Gets whether cancellation has been requested for this token.
Namespace: System.Threading
Assembly: mscorlib (in mscorlib.dll)
Property Value
Type: System.Booleantrue if cancellation has been requested for this token; otherwise false.
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 Cancel on the token's associated 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.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.