CancellationToken::CanBeCanceled Property
.NET Framework (current version)
Gets whether this token is capable of being in the canceled state.
Assembly: mscorlib (in mscorlib.dll)
Property Value
Type: System::Booleantrue if this token is capable of being in the canceled state; otherwise, false.
If CanBeCanceled returns false, it is guaranteed that the token will never transition into a canceled state, meaning that IsCancellationRequested will never return true. A cancellation token that cannot be canceled is returned by the static CancellationToken::None property.
You can optionally use this property to determine whether a cancellation token can be canceled before examing the value of the IsCancellationRequested property to determine whether it has been canceled.
Universal Windows Platform
Available since 8
.NET Framework
Available since 4.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 5.0
Windows Phone Silverlight
Available since 8.0
Windows Phone
Available since 8.1
Available since 8
.NET Framework
Available since 4.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 5.0
Windows Phone Silverlight
Available since 8.0
Windows Phone
Available since 8.1
Show: