Table of Contents

Delegate AsyncAction<T1, T2>

Namespace
Executables
Assembly
executables.dll

Represents an asynchronous action with two input arguments.

public delegate ValueTask AsyncAction<in T1, in T2>(T1 arg1, T2 arg2, CancellationToken token = default)

Parameters

arg1 T1

First input argument.

arg2 T2

Second input argument.

token CancellationToken

Cancellation token.

Returns

ValueTask

Asynchronous operation.

Type Parameters

T1

Type of the first input argument.

T2

Type of the second input argument.