Method GetAwaiter
GetAwaiter()
Enables directly awaiting this handle, e.g. await handle;.
Declared as an instance member (rather than only an extension method) so that
await works without requiring a using UnityEngine.ResourceManagement.AsyncOperations;
directive. See ToAwaitable() for failure and single-use semantics.
Declaration
public Awaitable.Awaiter GetAwaiter()
Returns
| Type | Description |
|---|---|
| Awaitable.Awaiter | The awaiter used by the compiler-generated await code. |