Delegate PropertyChangeObserver
Defines the signature of a method that executes an action when a property changes its value.
Namespace: TheXDS.MCART.Types.Base
Assembly: MCART.Mvvm.dll
Syntax
public delegate void PropertyChangeObserver(object instance, PropertyInfo property, PropertyChangeNotificationType notificationType)
Parameters
| Type | Name | Description |
|---|---|---|
| object | instance | Instance where the property changed. |
| PropertyInfo | property | Property that changed. |
| PropertyChangeNotificationType | notificationType | Indicates the type of notification that the observer is receiving. |