3 references to InternalWait
mscorlib (3)
system\runtime\compilerservices\TaskAwaiter.cs (1)
148
bool taskCompleted = task.
InternalWait
(Timeout.Infinite, default(CancellationToken));
system\threading\Tasks\Future.cs (1)
556
if (!IsCompleted)
InternalWait
(Timeout.Infinite, default(CancellationToken)); // won't throw if task faulted or canceled; that's handled below
system\threading\Tasks\Task.cs (1)
3167
if (!
InternalWait
(millisecondsTimeout, cancellationToken))