Click or drag to resize

WaitUntilChanged Method (FuncObject, INotifyPropertyChanged)

Suspend coroutine until the supplied expression changes.

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

Parameters

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