Interface IObservedChange<TSender, TValue>
- Namespace
- ReactiveUI
- Assembly
- ReactiveUI.dll
IObservedChange is a generic interface that is returned from WhenAny() Note that it is used for both Changing (i.e.'before change') and Changed Observables.
Type Parameters
TSender
The sender type.
TValue
The value type.
- Extension Methods
Properties
Expression
Gets the expression of the member that has changed on Sender.
Property Value
Sender
Gets the object that has raised the change.
Property Value
- TSender
Value
Gets the value of the property that has changed. IMPORTANT NOTE: This property is often not set for performance reasons, unless you have explicitly requested an Observable for a property via a method such as ObservableForProperty. To retrieve the value for the property, use the GetValue() extension method.
Property Value
- TValue