Interface IReactiveBinding<TView, TValue>
- Namespace
- ReactiveUI
- Assembly
- ReactiveUI.dll
This interface represents the result of a Bind/OneWayBind and gives information about the binding. When this object is disposed, it will destroy the binding it is describing (i.e. most of the time you won't actually care about this object, just that it is disposable).
Type Parameters
TView
The view type.
TValue
The value type.
- Inherited Members
- Extension Methods
Properties
Changed
Gets an observable representing changed values for the binding.
Property Value
- IObservable<TValue>
Direction
Gets the direction of the binding.
Property Value
View
Gets the instance of the view this binding is applied to.
Property Value
- TView
ViewExpression
Gets an expression representing the property on the view bound to the ViewModel. This can be a child property, for example x.Foo.Bar.Baz in which case that will be the expression.
Property Value
ViewModelExpression
Gets an expression representing the property on the ViewModel bound to the view. This can be a child property, for example x.Foo.Bar.Baz in which case that will be the expression.