35 references to CancellationToken
System.Private.CoreLib (35)
src\libraries\System.Private.CoreLib\src\System\Threading\Tasks\Future.cs (1)
1429public bool CancellationPending => (m_task.Status == TaskStatus.WaitingToRun) && m_task.CancellationToken.IsCancellationRequested;
src\libraries\System.Private.CoreLib\src\System\Threading\Tasks\Task.cs (31)
397/// <param name="cancellationToken">The <see cref="CancellationToken"/> that will be assigned to the new task.</param> 435/// <param name="cancellationToken">The <see cref="CancellationToken"/> that will be assigned to the new task.</param> 473/// <param name="cancellationToken">The <see cref="CancellationToken"/> that will be assigned to the new task.</param> 1298/// A <see cref="Task">Task</see> will complete in Canceled state either if its <see cref="CancellationToken">CancellationToken</see> 2662/// A <see cref="CancellationToken"/> to observe while waiting for the task to complete. 2695/// A <see cref="CancellationToken"/> to observe while waiting for the task to complete. 2739/// A <see cref="CancellationToken"/> to observe while waiting for the task to complete. 2793/// <summary>Gets a <see cref="Task"/> that will complete when this <see cref="Task"/> completes or when the specified <see cref="CancellationToken"/> has cancellation requested.</summary> 2794/// <param name="cancellationToken">The <see cref="CancellationToken"/> to monitor for a cancellation request.</param> 2814/// <summary>Gets a <see cref="Task"/> that will complete when this <see cref="Task"/> completes, when the specified timeout expires, or when the specified <see cref="CancellationToken"/> has cancellation requested.</summary> 2816/// <param name="cancellationToken">The <see cref="CancellationToken"/> to monitor for a cancellation request.</param> 2821/// <summary>Gets a <see cref="Task"/> that will complete when this <see cref="Task"/> completes, when the specified timeout expires, or when the specified <see cref="CancellationToken"/> has cancellation requested.</summary> 2824/// <param name="cancellationToken">The <see cref="CancellationToken"/> to monitor for a cancellation request.</param> 2924TaskStatus.Canceled => TrySetCanceled(completingTask.CancellationToken, completingTask.GetCancellationExceptionDispatchInfo()), 3654/// <param name="cancellationToken"> The <see cref="CancellationToken"/> that will be assigned to the new continuation task.</param> 3743/// <param name="cancellationToken">The <see cref="CancellationToken"/> that will be assigned to the new continuation task.</param> 3833/// <param name="cancellationToken"> The <see cref="CancellationToken"/> that will be assigned to the new continuation task.</param> 3925/// <param name="cancellationToken">The <see cref="CancellationToken"/> that will be assigned to the new continuation task.</param> 4021/// <param name="cancellationToken">The <see cref="CancellationToken"/> that will be assigned to the new continuation task.</param> 4115/// <param name="cancellationToken">The <see cref="CancellationToken"/> that will be assigned to the new continuation task.</param> 4222/// <param name="cancellationToken">The <see cref="CancellationToken"/> that will be assigned to the new continuation task.</param> 4319/// <param name="cancellationToken">The <see cref="CancellationToken"/> that will be assigned to the new continuation task.</param> 4839/// A <see cref="CancellationToken"/> to observe while waiting for the tasks to complete. 4884/// A <see cref="CancellationToken"/> to observe while waiting for the tasks to complete. 4920/// <param name="cancellationToken">A <see cref="CancellationToken"/> to observe while waiting for the tasks to complete.</param> 5234/// A <see cref="CancellationToken"/> to observe while waiting for a task to complete. 5295/// A <see cref="CancellationToken"/> to observe while waiting for a task to complete. 6210TrySetCanceled(canceledTask.CancellationToken, canceledTask.GetCancellationExceptionDispatchInfo()); 6482TrySetCanceled(canceledTask.CancellationToken, canceledTask.GetCancellationExceptionDispatchInfo()); 7170public bool CancellationPending => (m_task.Status == TaskStatus.WaitingToRun) && m_task.CancellationToken.IsCancellationRequested; 7528result = TrySetCanceled(task.CancellationToken, task.GetCancellationExceptionDispatchInfo());
src\libraries\System.Private.CoreLib\src\System\Threading\Tasks\TaskCanceledException.cs (1)
73base(SR.TaskCanceledException_ctor_DefaultMessage, task != null ? task.CancellationToken : CancellationToken.None)
src\libraries\System.Private.CoreLib\src\System\Threading\Tasks\TaskCompletionSource.cs (1)
339result = _task.TrySetCanceled(completedTask.CancellationToken, completedTask.GetCancellationExceptionDispatchInfo());
src\libraries\System.Private.CoreLib\src\System\Threading\Tasks\TaskCompletionSource_T.cs (1)
341result = _task.TrySetCanceled(completedTask.CancellationToken, completedTask.GetCancellationExceptionDispatchInfo());