Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ FromException< TResult >() [2/2]

static Task< TResult > System.Threading.Tasks.Task< TResult >.FromException< TResult > ( Exception exception)
inlinestaticinherited

Definition at line 3352 of file Task.cs.

3353 {
3354 if (exception == null)
3355 {
3356 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.exception);
3357 }
3359 bool flag = task.TrySetException(exception);
3360 return task;
3361 }

References System.exception, System.task, and System.ThrowHelper.ThrowArgumentNullException().