Click or drag to resize

WaitUntilChanged Method

Suspend coroutine until the supplied expression changes.

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

Parameters

expression  FuncObject
Expression to suspend until change.
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 change.
See Also