Interface IReactiveObject
- Namespace
- ReactiveUI
- Assembly
- ReactiveUI.dll
A reactive object is a interface for ViewModels which will expose logging, and notify when properties are either changing or changed. The primary use of this interface is to allow external classes such as the ObservableAsPropertyHelper to trigger these events inside the ViewModel.
- Inherited Members
- Extension Methods
Methods
RaisePropertyChanged(PropertyChangedEventArgs)
Raise a property has changed event.
Parameters
argsPropertyChanged Event Args The arguments with details about the property that has changed.
RaisePropertyChanging(PropertyChangingEventArgs)
Raise a property is changing event.
Parameters
argsPropertyChanging Event Args The arguments with details about the property that is changing.