TaskAwaiter<TResult>.OnCompleted(Action) Method

Definition

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

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

public:
 virtual void OnCompleted(Action ^ continuation);
public void OnCompleted (Action continuation);
abstract member OnCompleted : Action -> unit
override this.OnCompleted : Action -> unit
Public Sub OnCompleted (continuation As Action)

Parameters

continuation
Action

The action to perform when the wait operation completes.

Implements

Exceptions

continuation is null.

The TaskAwaiter<TResult> object was not properly initialized.

Remarks

This type and its members are intended for use by the compiler.

Applies to