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
Werk met ons samen op GitHub
De bron voor deze inhoud vindt u op GitHub, waar u ook problemen en pull-aanvragen kunt maken en bekijken. Raadpleeg onze gids voor inzenders voor meer informatie.