Table of Contents

Interface IAwaiter<TResult>

Namespace
Godot
Assembly
GodotSharp.dll

A templated interface that requires a boolean for completion status and a method that gets the result of completion and returns it.

public interface IAwaiter<out TResult> : INotifyCompletion

Type Parameters

TResult

A reference to the result to be passed out.

Inherited Members

Properties

IsCompleted

bool IsCompleted { get; }

Property Value

bool

Methods

GetResult()

TResult GetResult()

Returns

TResult