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
argTInput argument.
tokenCancellationTokenCancellation token.
Returns
- ValueTask
Asynchronous operation.
Type Parameters
TType of the input argument.