10 references to WaitTimeout
mscorlib (3)
system\threading\waithandle.cs (3)
252
return (ret !=
WaitTimeout
);
272
return (ret !=
WaitTimeout
);
369
return (ret !=
WaitTimeout
);
System (6)
net\System\Net\_TimerThread.cs (2)
713
GlobalLog.Print("TimerThread#" + Thread.CurrentThread.ManagedThreadId.ToString() + "::ThreadProc() Awoke, cause: " + (waitResult == WaitHandle.
WaitTimeout
? "Timeout" : "Prod"));
716
if (waitResult == WaitHandle.
WaitTimeout
&& !haveNextTick) {
sys\system\collections\concurrent\BlockingCollection.cs (4)
1047
Debug.Assert((index == WaitHandle.
WaitTimeout
) || (index >= 0 && index < handles.Count));
1049
if (index == WaitHandle.
WaitTimeout
) //case#2
1449
Debug.Assert((index == WaitHandle.
WaitTimeout
) || (index >= 0 && index < handles.Count));
1450
if (index == WaitHandle.
WaitTimeout
) //case#2
System.ServiceModel (1)
System\ServiceModel\Channels\ConnectAlgorithms.cs (1)
175
else if (index != WaitHandle.
WaitTimeout
)