Delegate TaskT<T>
- Namespace
- SunamoDelegates
- Assembly
- SunamoDelegates.dll
Represents a method that takes a value of type T and returns a Task.
public delegate Task TaskT<T>(T value)
Parameters
valueTThe value of type T.
Returns
- Task
A task representing the asynchronous operation.
Type Parameters
TThe type of the value parameter.
- Extension Methods