TaskCompletionSource.SetCanceled Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
SetCanceled() | |
SetCanceled(CancellationToken) |
Transitions the underlying Task into the Canceled state using the specified token. |
SetCanceled()
- Source:
- TaskCompletionSource.cs
- Source:
- TaskCompletionSource.cs
- Source:
- TaskCompletionSource.cs
public:
void SetCanceled();
public void SetCanceled ();
member this.SetCanceled : unit -> unit
Public Sub SetCanceled ()
Exceptions
The underlying Task is already in one of the three final states: RanToCompletion, Faulted, or Canceled.
Applies to
SetCanceled(CancellationToken)
- Source:
- TaskCompletionSource.cs
- Source:
- TaskCompletionSource.cs
- Source:
- TaskCompletionSource.cs
public:
void SetCanceled(System::Threading::CancellationToken cancellationToken);
public void SetCanceled (System.Threading.CancellationToken cancellationToken);
member this.SetCanceled : System.Threading.CancellationToken -> unit
Public Sub SetCanceled (cancellationToken As CancellationToken)
Parameters
- cancellationToken
- CancellationToken
The cancellation token with which to cancel the Task.
Exceptions
The underlying Task is already in one of the three final states: RanToCompletion, Faulted, or Canceled.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.