SpinWait.SpinUntil Method (Func<Boolean>, Int32)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Spins until the specified condition is satisfied or until the specified timeout is expired.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- condition
- Type: System.Func<Boolean>
A delegate to be executed over and over until it returns true.
- millisecondsTimeout
- Type: System.Int32
The number of milliseconds to wait, or Infinite (-1) to wait indefinitely.
Return Value
Type: System.BooleanTrue if the condition is satisfied within the timeout; otherwise, false
| Exception | Condition |
|---|---|
| ArgumentNullException | The condition argument is null. |
| ArgumentOutOfRangeException | millisecondsTimeout is a negative number other than -1, which represents an infinite time-out. |
Show: