ManualResetEventSlim.Wait Method (Int32, CancellationToken)
[ 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, while observing a CancellationToken.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- millisecondsTimeout
- Type: System.Int32
The number of milliseconds to wait, or Infinite(-1) to wait indefinitely.
- cancellationToken
- Type: System.Threading.CancellationToken
The CancellationToken to observe.
| Exception | Condition |
|---|---|
| OperationCanceledException | cancellationToken was canceled. |
| 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 or the CancellationTokenSource that created cancellationToken has been disposed. |