In This Topic
Listens to any property changes
Overload List
Overload | Description |
Listen<TModel>(TModel,Action<String>) | Listens to any property changes |
Listen<TModel,TValue>(TModel,Expression<Func<TModel,TValue>>,Action) | Performs specific action on particular property change |
Listen<TModel,TValue>(TModel,Expression<Func<TModel,TValue>>,Action<TModel>) | Performs specific action on particular property change |
Listen<TModel1,TModel2,TValue>(TModel1,Expression<Func<TModel1,TModel2>>,Expression<Func<TModel2,TValue>>,Action) | Performs specific action on particular property change with nested property support |
Listen<TModel1,TModel2,TModel3,TValue>(TModel1,Expression<Func<TModel1,TModel2>>,Expression<Func<TModel2,TModel3>>,Expression<Func<TModel3,TValue>>,Action) | Performs specific action on particular property change with nested properties support. |
See Also