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

◆ WrappedTryRunInline()

bool System.Threading.Tasks.Task< TResult >.WrappedTryRunInline ( )
inlineprivateinherited

Definition at line 2308 of file Task.cs.

2309 {
2310 if (m_taskScheduler == null)
2311 {
2312 return false;
2313 }
2314 try
2315 {
2317 }
2319 {
2320 throw new TaskSchedulerException(innerException);
2321 }
2322 }
bool TryRunInline(Task task, bool taskWasPreviouslyQueued)
TaskScheduler m_taskScheduler
Definition Task.cs:952
AggregateException? Exception
Definition Task.cs:1014

References System.Threading.Tasks.Task< TResult >.m_taskScheduler, and System.Threading.Tasks.TaskScheduler.TryRunInline().

Referenced by System.Threading.Tasks.Task< TResult >.InternalWaitCore().