CountdownEvent.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 the CountdownEvent is set, using a 32-bit signed integer to measure the timeout.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- millisecondsTimeout
- Type: System.Int32
The number of milliseconds to wait, or Infinite(-1) to wait indefinitely.
| Exception | Condition |
|---|---|
| ObjectDisposedException | The current instance has already been disposed. |
| ArgumentOutOfRangeException | millisecondsTimeout is a negative number other than -1, which represents an infinite time-out. |
Show: