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
Dolgozzon együtt velünk a GitHubon
A tartalom forrása a GitHubon található, ahol létrehozhat és áttekinthet problémákat és lekéréses kérelmeket is. További információért tekintse meg a közreműködői útmutatónkat.