5 references to Canceled
System.IO.Pipelines (5)
System\IO\Pipelines\PipeAwaitable.cs (5)
41
public bool IsCompleted => (_awaitableState & (AwaitableState.Completed | AwaitableState.
Canceled
)) != 0;
151
_awaitableState |= AwaitableState.
Canceled
;
170
bool isCanceled = (_awaitableState & AwaitableState.
Canceled
) == AwaitableState.
Canceled
;
172
_awaitableState &= ~(AwaitableState.
Canceled
| AwaitableState.Running);