Table of Contents
Extensions for Il2Cpp Task
public static class TaskExt
Inheritance System.Object TaskExt
Calls ContinueWith properly typed for IL2CPP
public static void ContinueWithIl2Cpp<T>(this Task<T> task, System.Action<Task<T>> action);
T
task Il2CppSystem.Threading.Tasks.Task
action System.Action<Il2CppSystem.Threading.Tasks.Task>
Calls ContinueWith properly typed for IL2CPP with the task's Result
public static void Then<T>(this Task<T> task, System.Action<T> action, System.Action<AggregateException> error=null);
T
task Il2CppSystem.Threading.Tasks.Task
action System.Action<T>