5 references to NotCanceledState
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Threading\CancellationTokenSource.cs (5)
73
public bool IsCancellationRequested => _state != States.
NotCanceledState
;
487
if (_state == States.
NotCanceledState
)
705
/// <summary>Transitions from <see cref="States.
NotCanceledState
"/> to <see cref="States.NotifyingState"/>.</summary>
711
Interlocked.CompareExchange(ref _state, States.NotifyingState, States.
NotCanceledState
) == States.
NotCanceledState
)