IObservable
Similar to INotifyPropertyChanging
and INotifyPropertyChanged
interfaces.
Description
Represents an object that can be observed for property changes.
Public Events
PropertyChanging : UnityAction<string>
- Raised when a property on the object is about to change, providing the property name.PropertyChanged : UnityAction<string>
- Raised when a property on the object has changed, providing the property name.
Public Methods
RaisePropertyChanging(string)
- Manually raises thePropertyChanging
event with the property name provided.RaisePropertyChanged(string)
- Manually raises thePropertyChanged
event with the property name provided.