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