Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


Cancel()

Cancels the awaitable. If the awaitable is being awaited, the awaiter receives a System.OperationCanceledException.
Read time 1 minuteLast updated 6 days ago

Definition

  • Type: Method
  • Namespace: UnityEngine
  • Assembly: UnityEngine.CoreModule
public void Cancel()

Remarks

Note: Some methods returning an
Awaitable
also accept a
CancellationToken
, such as Awaitable.WaitForSecondsAsync and Awaitable.NextFrameAsync. For such methods, both cancellation models are equivalent: whether you call
Awaitable.Cancel
directly or trigger the supplied
CancellationToken
, the awaiter receives an
OperationCanceledException
.