vote up 0 vote down star

Does anyone know how .NET handles a timeout on a call to Semaphore.WaitOne(timeout)?

I'd expect a TimeoutException, but the MSDN documentation doesn't list this in the list of expected exceptions, and I can't seem to find it documented anywhere.

Thanks in advance!

flag

1 Answer

vote up 1 vote down check

The method will return false if it times out, and true if it returns a signal:

if (mySemaphore.WaitOne(1000))
{
    // signal received
}
else
{
    // wait timed out
}
link|flag
That did it, thanks! – snogfish Sep 16 at 12:50

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.