Table of Contents

Interface IAwaiter<TResult>

Namespace
Anvil.API
Assembly
NWN.Anvil.dll

Explicit interface for an awaiter. An awaiter is a system that will run an async operation and schedule a continuation when it completes.

public interface IAwaiter<out TResult> : INotifyCompletion

Type Parameters

TResult

The awaiter return value type.

Inherited Members
Extension Methods

Properties

IsCompleted

Gets whether the asynchronous operation has completed.

Methods

GetResult()

Ends the await operation and returns the computed result.