TaskAwaiter<TResult> Struct

Definition

Represents an object that waits for the completion of an asynchronous task and provides a parameter for the result.

generic <typename TResult>
public value class TaskAwaiter : System::Runtime::CompilerServices::ICriticalNotifyCompletion
public struct TaskAwaiter<TResult> : System.Runtime.CompilerServices.ICriticalNotifyCompletion
public readonly struct TaskAwaiter<TResult> : System.Runtime.CompilerServices.ICriticalNotifyCompletion
type TaskAwaiter<'Result> = struct
    interface ICriticalNotifyCompletion
    interface INotifyCompletion
Public Structure TaskAwaiter(Of TResult)
Implements ICriticalNotifyCompletion

Type Parameters

TResult

The result for the task.

Inheritance
TaskAwaiter<TResult>
Implements

Remarks

This type is intended for compiler use only.

Properties

IsCompleted

This API supports the product infrastructure and is not intended to be used directly from your code.

Gets a value that indicates whether the asynchronous task has completed.

Methods

GetResult()

Ends the wait for the completion of the asynchronous task.

OnCompleted(Action)

This API supports the product infrastructure and is not intended to be used directly from your code.

Sets the action to perform when the TaskAwaiter<TResult> object stops waiting for the asynchronous task to complete.

UnsafeOnCompleted(Action)

This API supports the product infrastructure and is not intended to be used directly from your code.

Schedules the continuation action for the asynchronous task associated with this awaiter.

Applies to