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
Syntaxpublic 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:
ITaskA task representing the wait for expression to become false.
See Also