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> 1297/// A <see cref="Task">Task</see> will complete in Canceled state either if its <see cref="CancellationToken">CancellationToken</see> 2660/// A <see cref="CancellationToken"/> to observe while waiting for the task to complete. 2693/// A <see cref="CancellationToken"/> to observe while waiting for the task to complete. 2737/// A <see cref="CancellationToken"/> to observe while waiting for the task to complete. 2791/// <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> 2792/// <param name="cancellationToken">The <see cref="CancellationToken"/> to monitor for a cancellation request.</param> 2812/// <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> 2814/// <param name="cancellationToken">The <see cref="CancellationToken"/> to monitor for a cancellation request.</param> 2819/// <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> 2822/// <param name="cancellationToken">The <see cref="CancellationToken"/> to monitor for a cancellation request.</param> 2922TaskStatus.Canceled => TrySetCanceled(completingTask.CancellationToken, completingTask.GetCancellationExceptionDispatchInfo()), 3652/// <param name="cancellationToken"> The <see cref="CancellationToken"/> that will be assigned to the new continuation task.</param> 3741/// <param name="cancellationToken">The <see cref="CancellationToken"/> that will be assigned to the new continuation task.</param> 3831/// <param name="cancellationToken"> The <see cref="CancellationToken"/> that will be assigned to the new continuation task.</param> 3923/// <param name="cancellationToken">The <see cref="CancellationToken"/> that will be assigned to the new continuation task.</param> 4019/// <param name="cancellationToken">The <see cref="CancellationToken"/> that will be assigned to the new continuation task.</param> 4113/// <param name="cancellationToken">The <see cref="CancellationToken"/> that will be assigned to the new continuation task.</param> 4220/// <param name="cancellationToken">The <see cref="CancellationToken"/> that will be assigned to the new continuation task.</param> 4317/// <param name="cancellationToken">The <see cref="CancellationToken"/> that will be assigned to the new continuation task.</param> 4837/// A <see cref="CancellationToken"/> to observe while waiting for the tasks to complete. 4882/// A <see cref="CancellationToken"/> to observe while waiting for the tasks to complete. 4918/// <param name="cancellationToken">A <see cref="CancellationToken"/> to observe while waiting for the tasks to complete.</param> 5232/// A <see cref="CancellationToken"/> to observe while waiting for a task to complete. 5293/// A <see cref="CancellationToken"/> to observe while waiting for a task to complete. 6191TrySetCanceled(canceledTask.CancellationToken, canceledTask.GetCancellationExceptionDispatchInfo()); 6463TrySetCanceled(canceledTask.CancellationToken, canceledTask.GetCancellationExceptionDispatchInfo()); 7151public bool CancellationPending => (m_task.Status == TaskStatus.WaitingToRun) && m_task.CancellationToken.IsCancellationRequested; 7509result = 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());