Click or drag to resize

WaitUntilFalse Method (FuncBoolean, INotifyPropertyChanged)

Suspend coroutine until the supplied expression is false.

Namespace:  Demo3D.Native
Assembly:  Demo3D.Core (in Demo3D.Core.dll) Version: 15.0.2.11458
Syntax
C#
public static ITask UntilFalse(
	Func<bool> expression,
	params INotifyPropertyChanged[] observables
)

Parameters

expression
Type: SystemFuncBoolean
Expression to suspend until false.
observables
Type: System.ComponentModelINotifyPropertyChanged
Collection of INotifyPropertyChanged objects to re-evaluate the expression for when they change.

Return Value

Type: ITask
A task representing the wait for expression to become false.
See Also