WaitUntilFalse(FuncBoolean, INotifyPropertyChanged) Method |
Suspend coroutine until the supplied expression is false.
Namespace: Demo3D.NativeAssembly: Demo3D.Core (in Demo3D.Core.dll) Version: 19.00.00
Syntaxpublic 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
ITaskA task representing the wait for expression to become false.
See Also