Click or drag to resize

WaitUntilFalse(FuncBoolean, INotifyPropertyChanged) Method

Suspend coroutine until the supplied expression is false.

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

Parameters

expression  FuncBoolean
Expression to suspend until false.
observables  INotifyPropertyChanged
Collection of INotifyPropertyChanged objects to re-evaluate the expression for when they change.

Return Value

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