SpinWait.SpinUntil Method (Func<Boolean>, TimeSpan)
[ 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.
- timeout
- Type: System.TimeSpan
A TimeSpan that represents the number of milliseconds to wait, or a TimeSpan that represents -1 milliseconds 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 | timeout is a negative number other than -1 milliseconds, which represents an infinite time-out -or- timeout is greater than MaxValue. |
Show: