Class CoTask<Tresult>
- Namespace
- ReFuel
- Assembly
- ReFuel.Common.dll
A task that executes with cooperative multitasking, with result.
public abstract class CoTask<Tresult> : CoTask
Type Parameters
Tresult
The result type
- Inheritance
-
CoTask<Tresult>
- Inherited Members
Properties
Result
Task result.
public Tresult? Result { get; }
Property Value
- Tresult
Methods
Finish(Tresult)
Finish the task, with results.
public void Finish(Tresult result)
Parameters
result
TresultThe result object.