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