35 references to CancellationToken
System.Private.CoreLib (35)
src\libraries\System.Private.CoreLib\src\System\Threading\Tasks\Future.cs (1)
1433public 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> 2661/// A <see cref="CancellationToken"/> to observe while waiting for the task to complete. 2694/// A <see cref="CancellationToken"/> to observe while waiting for the task to complete. 2738/// A <see cref="CancellationToken"/> to observe while waiting for the task to complete. 2792/// <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> 2793/// <param name="cancellationToken">The <see cref="CancellationToken"/> to monitor for a cancellation request.</param> 2813/// <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> 2815/// <param name="cancellationToken">The <see cref="CancellationToken"/> to monitor for a cancellation request.</param> 2820/// <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> 2823/// <param name="cancellationToken">The <see cref="CancellationToken"/> to monitor for a cancellation request.</param> 2923TaskStatus.Canceled => TrySetCanceled(completingTask.CancellationToken, completingTask.GetCancellationExceptionDispatchInfo()), 3653/// <param name="cancellationToken"> The <see cref="CancellationToken"/> that will be assigned to the new continuation task.</param> 3742/// <param name="cancellationToken">The <see cref="CancellationToken"/> that will be assigned to the new continuation task.</param> 3832/// <param name="cancellationToken"> The <see cref="CancellationToken"/> that will be assigned to the new continuation task.</param> 3924/// <param name="cancellationToken">The <see cref="CancellationToken"/> that will be assigned to the new continuation task.</param> 4020/// <param name="cancellationToken">The <see cref="CancellationToken"/> that will be assigned to the new continuation task.</param> 4114/// <param name="cancellationToken">The <see cref="CancellationToken"/> that will be assigned to the new continuation task.</param> 4221/// <param name="cancellationToken">The <see cref="CancellationToken"/> that will be assigned to the new continuation task.</param> 4318/// <param name="cancellationToken">The <see cref="CancellationToken"/> that will be assigned to the new continuation task.</param> 4838/// A <see cref="CancellationToken"/> to observe while waiting for the tasks to complete. 4883/// A <see cref="CancellationToken"/> to observe while waiting for the tasks to complete. 4919/// <param name="cancellationToken">A <see cref="CancellationToken"/> to observe while waiting for the tasks to complete.</param> 5233/// A <see cref="CancellationToken"/> to observe while waiting for a task to complete. 5294/// A <see cref="CancellationToken"/> to observe while waiting for a task to complete. 6192TrySetCanceled(canceledTask.CancellationToken, canceledTask.GetCancellationExceptionDispatchInfo()); 6464TrySetCanceled(canceledTask.CancellationToken, canceledTask.GetCancellationExceptionDispatchInfo()); 7152public bool CancellationPending => (m_task.Status == TaskStatus.WaitingToRun) && m_task.CancellationToken.IsCancellationRequested; 7510result = 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());