SemaphoreSlim.Wait Method (Int32)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Blocks the current thread until it can enter the SemaphoreSlim, using a 32-bit signed integer that specifies the timeout.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- millisecondsTimeout
- Type: System.Int32
The number of milliseconds to wait, or Infinite(-1) to wait indefinitely.
Return Value
Type: System.Booleantrue if the current thread successfully entered the SemaphoreSlim; otherwise, false.
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | millisecondsTimeout is a negative number other than -1, which represents an infinite time-out. |
Show: