Table of Contents

Delegate AsyncAction<T>

Namespace
Executables
Assembly
executables.dll

Represents an asynchronous action with one input argument.

public delegate ValueTask AsyncAction<in T>(T arg, CancellationToken token = default)

Parameters

arg T

Input argument.

token CancellationToken

Cancellation token.

Returns

ValueTask

Asynchronous operation.

Type Parameters

T

Type of the input argument.