SpinUntil Method (Func(Boolean), TimeSpan)
Collapse the table of content
Expand the table of content

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.

Namespace:  System.Threading
Assembly:  mscorlib (in mscorlib.dll)

public static bool SpinUntil(
	Func<bool> condition,
	TimeSpan timeout
)

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.Boolean
True if the condition is satisfied within the timeout; otherwise, false

ExceptionCondition
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.

Windows Phone OS

Supported in: 8.1, 8.0

Show:
© 2017 Microsoft