ObservableObject
Abstract base class that all other observable objects derive from.
Implements the IObservable interface.
Description
Represents an object that can be observed for property changes. It can be shared and modified throughout the application.
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 thePropertyChangingevent with the property name provided.RaisePropertyChanged(string)- Manually raises thePropertyChangedevent with the property name provided.
Protected Methods
TrySetProperty<T>(ref T, T, [string]): bool- Attempts to set the field value with the newTvalue. Optionally, a property name can be provided.
NOTE: The PropertyChanging and PropertyChanged events are only raised when the new value is not equal to the existing value.
NOTE: The propertyName argument is optional and defaults to the value of [CallerMemberName].