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 has changed its value. |
PropertyInfo | property | Property that has changed its value. |
PropertyChangeNotificationType | notificationType | Indicates the type of notification that the observer is receiving. |