3 references to InternalWait
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Runtime\CompilerServices\TaskAwaiter.cs (1)
106bool taskCompleted = task.InternalWait(Timeout.Infinite, default);
src\libraries\System.Private.CoreLib\src\System\Threading\Tasks\Future.cs (1)
454if (!IsCompleted) InternalWait(Timeout.Infinite, default); // won't throw if task faulted or canceled; that's handled below
src\libraries\System.Private.CoreLib\src\System\Threading\Tasks\Task.cs (1)
2765if (!InternalWait(millisecondsTimeout, cancellationToken))