The recording of the first ever ReactiveUI virtual conference is available on our YouTube Channel.

IPropertyBinderImplementation Interface

Summary

This interface represents an object that is capable of providing binding implementations.
Namespace
ReactiveUI
Interfaces
  • IEnableLogger
Implementing Types
graph BT Type-.->Interface0["IEnableLogger"] Type["IPropertyBinderImplementation"] class Type type-node Implementing0["PropertyBinderImplementation"]-.->Type click Implementing0 "/api/ReactiveUI/PropertyBinderImplementation"

Syntax

public interface IPropertyBinderImplementation : IEnableLogger

Methods

Name Value Summary
Bind<TViewModel, TView, TVMProp, TVProp, TDontCare>(TViewModel, TView, Expression<Func<TViewModel, TVMProp>>, Expression<Func<TView, TVProp>>, IObservable<TDontCare>?, Func<TVMProp, TVProp>, Func<TVProp, TVMProp>, TriggerUpdate) IReactiveBinding<TView, (object view, bool isViewModel)>
Creates a two-way binding between a view model and a view. This binding will attempt to convert the values of the view and view model properties using a IBindingTypeConverter if they are not of the same type.
Bind<TViewModel, TView, TVMProp, TVProp, TDontCare>(TViewModel, TView, Expression<Func<TViewModel, TVMProp>>, Expression<Func<TView, TVProp>>, IObservable<TDontCare>?, object, IBindingTypeConverter, IBindingTypeConverter, TriggerUpdate) IReactiveBinding<TView, (object view, bool isViewModel)>
Creates a two-way binding between a view model and a view. This binding will attempt to convert the values of the view and view model properties using a IBindingTypeConverter if they are not of the same type.
BindTo<TValue, TTarget, TTValue>(IObservable<TValue>, TTarget, Expression<Func<TTarget, TTValue>>, object, IBindingTypeConverter) IDisposable
BindTo takes an Observable stream and applies it to a target property. Conceptually it is similar to.
Subscribe(x =>
    target.property = x)
, but allows you to use child properties without the null checks.
OneWayBind<TViewModel, TView, TProp, TOut>(TViewModel, TView, Expression<Func<TViewModel, TProp>>, Expression<Func<TView, TOut>>, Func<TProp, TOut>) IReactiveBinding<TView, TOut>
Creates a one way binding with a selector, i.e. a binding that flows from the viewModel to the view only, and where the value of the view model property is mapped through the selector before being set to the view.
OneWayBind<TViewModel, TView, TVMProp, TVProp>(TViewModel, TView, Expression<Func<TViewModel, TVMProp>>, Expression<Func<TView, TVProp>>, object, IBindingTypeConverter) IReactiveBinding<TView, TVProp>
Creates a one-way binding, i.e. a binding that flows from the viewModel to the view only. This binding will attempt to convert the value of the view model property to the view property if they are not of the same type.

Extension Methods

Name Value Summary
BindCommand<IPropertyBinderImplementation, TViewModel, TProp, TControl, TParam>(TViewModel, Expression<Func<TViewModel, TProp>>, Expression<Func<IPropertyBinderImplementation, TControl>>, Expression<Func<TViewModel, TParam>>, string) IReactiveBinding<TView, TProp>
Bind a command from the ViewModel to an explicitly specified control on the View.
BindCommand<IPropertyBinderImplementation, TViewModel, TProp, TControl, TParam>(TViewModel, Expression<Func<TViewModel, TProp>>, Expression<Func<IPropertyBinderImplementation, TControl>>, IObservable<TParam>, string) IReactiveBinding<TView, TProp>
Bind a command from the ViewModel to an explicitly specified control on the View.
BindCommand<IPropertyBinderImplementation, TViewModel, TProp, TControl>(TViewModel, Expression<Func<TViewModel, TProp>>, Expression<Func<IPropertyBinderImplementation, TControl>>, string) IReactiveBinding<TView, TProp>
Bind a command from the ViewModel to an explicitly specified control on the View.
BindValidation<IPropertyBinderImplementation, TViewModel, TViewModelProperty, TViewProperty>(TViewModel, Expression<Func<TViewModel, TViewModelProperty>>, Expression<Func<IPropertyBinderImplementation, TViewProperty>>, IValidationTextFormatter<string>) IDisposable
Binds the specified ViewModel property validation to the View property.
BindValidation<IPropertyBinderImplementation, TViewModel, TViewModelProperty>(TViewModel, Expression<Func<TViewModel, TViewModelProperty>>, TextInputLayout, IValidationTextFormatter<string>) IDisposable
Platform binding to the TextInputLayout.
BindValidation<IPropertyBinderImplementation, TViewModel, TViewModelProperty>(TViewModel, Expression<Func<TViewModel, TViewModelProperty>>, TextInputLayout, IValidationTextFormatter<string>) IDisposable
Platform binding to the TextInputLayout.
BindValidation<IPropertyBinderImplementation, TViewModel, TViewProperty>(TViewModel, Expression<Func<IPropertyBinderImplementation, TViewProperty>>, IValidationTextFormatter<string>) IDisposable
Binds the overall validation of a ViewModel to a specified View property.
BindValidation<IPropertyBinderImplementation, TViewModel, TViewProperty>(TViewModel, Expression<Func<TViewModel, ValidationHelper>>, Expression<Func<IPropertyBinderImplementation, TViewProperty>>, IValidationTextFormatter<string>) IDisposable
Binds a ValidationHelper from a ViewModel to a specified View property.
BindValidation<IPropertyBinderImplementation, TViewModel>(TViewModel, Expression<Func<TViewModel, ValidationHelper>>, TextInputLayout, IValidationTextFormatter<string>) IDisposable
Platform binding to the TextInputLayout.
BindValidation<IPropertyBinderImplementation, TViewModel>(TViewModel, Expression<Func<TViewModel, ValidationHelper>>, TextInputLayout, IValidationTextFormatter<string>) IDisposable
Platform binding to the TextInputLayout.
BindValidationEx<IPropertyBinderImplementation, TViewModel, TViewModelProperty>(TViewModel, Expression<Func<TViewModel, TViewModelProperty>>, TextInputLayout, IValidationTextFormatter<string>) IDisposable
Platform binding to the TextInputLayout.
BindValidationEx<IPropertyBinderImplementation, TViewModel, TViewModelProperty>(TViewModel, Expression<Func<TViewModel, TViewModelProperty>>, TextInputLayout, IValidationTextFormatter<string>) IDisposable
Platform binding to the TextInputLayout.
InvokeViewModelAction<T>(Action<T>) object
This is a thing I lifted from Prism.
WhenAny<IPropertyBinderImplementation, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>(Expression<Func<IPropertyBinderImplementation, T1>>, Expression<Func<IPropertyBinderImplementation, T2>>, Expression<Func<IPropertyBinderImplementation, T3>>, Expression<Func<IPropertyBinderImplementation, T4>>, Expression<Func<IPropertyBinderImplementation, T5>>, Expression<Func<IPropertyBinderImplementation, T6>>, Expression<Func<IPropertyBinderImplementation, T7>>, Expression<Func<IPropertyBinderImplementation, T8>>, Expression<Func<IPropertyBinderImplementation, T9>>, Expression<Func<IPropertyBinderImplementation, T10>>, Expression<Func<IPropertyBinderImplementation, T11>>, Expression<Func<IPropertyBinderImplementation, T12>>, Func<IObservedChange<IPropertyBinderImplementation, T1>, IObservedChange<IPropertyBinderImplementation, T2>, IObservedChange<IPropertyBinderImplementation, T3>, IObservedChange<IPropertyBinderImplementation, T4>, IObservedChange<IPropertyBinderImplementation, T5>, IObservedChange<IPropertyBinderImplementation, T6>, IObservedChange<IPropertyBinderImplementation, T7>, IObservedChange<IPropertyBinderImplementation, T8>, IObservedChange<IPropertyBinderImplementation, T9>, IObservedChange<IPropertyBinderImplementation, T10>, IObservedChange<IPropertyBinderImplementation, T11>, IObservedChange<IPropertyBinderImplementation, T12>, TRet>) IObservable<TRet>
WhenAny allows you to observe whenever one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAny<IPropertyBinderImplementation, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>(Expression<Func<IPropertyBinderImplementation, T1>>, Expression<Func<IPropertyBinderImplementation, T2>>, Expression<Func<IPropertyBinderImplementation, T3>>, Expression<Func<IPropertyBinderImplementation, T4>>, Expression<Func<IPropertyBinderImplementation, T5>>, Expression<Func<IPropertyBinderImplementation, T6>>, Expression<Func<IPropertyBinderImplementation, T7>>, Expression<Func<IPropertyBinderImplementation, T8>>, Expression<Func<IPropertyBinderImplementation, T9>>, Expression<Func<IPropertyBinderImplementation, T10>>, Expression<Func<IPropertyBinderImplementation, T11>>, Func<IObservedChange<IPropertyBinderImplementation, T1>, IObservedChange<IPropertyBinderImplementation, T2>, IObservedChange<IPropertyBinderImplementation, T3>, IObservedChange<IPropertyBinderImplementation, T4>, IObservedChange<IPropertyBinderImplementation, T5>, IObservedChange<IPropertyBinderImplementation, T6>, IObservedChange<IPropertyBinderImplementation, T7>, IObservedChange<IPropertyBinderImplementation, T8>, IObservedChange<IPropertyBinderImplementation, T9>, IObservedChange<IPropertyBinderImplementation, T10>, IObservedChange<IPropertyBinderImplementation, T11>, TRet>) IObservable<TRet>
WhenAny allows you to observe whenever one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAny<IPropertyBinderImplementation, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>(Expression<Func<IPropertyBinderImplementation, T1>>, Expression<Func<IPropertyBinderImplementation, T2>>, Expression<Func<IPropertyBinderImplementation, T3>>, Expression<Func<IPropertyBinderImplementation, T4>>, Expression<Func<IPropertyBinderImplementation, T5>>, Expression<Func<IPropertyBinderImplementation, T6>>, Expression<Func<IPropertyBinderImplementation, T7>>, Expression<Func<IPropertyBinderImplementation, T8>>, Expression<Func<IPropertyBinderImplementation, T9>>, Expression<Func<IPropertyBinderImplementation, T10>>, Func<IObservedChange<IPropertyBinderImplementation, T1>, IObservedChange<IPropertyBinderImplementation, T2>, IObservedChange<IPropertyBinderImplementation, T3>, IObservedChange<IPropertyBinderImplementation, T4>, IObservedChange<IPropertyBinderImplementation, T5>, IObservedChange<IPropertyBinderImplementation, T6>, IObservedChange<IPropertyBinderImplementation, T7>, IObservedChange<IPropertyBinderImplementation, T8>, IObservedChange<IPropertyBinderImplementation, T9>, IObservedChange<IPropertyBinderImplementation, T10>, TRet>) IObservable<TRet>
WhenAny allows you to observe whenever one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAny<IPropertyBinderImplementation, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9>(Expression<Func<IPropertyBinderImplementation, T1>>, Expression<Func<IPropertyBinderImplementation, T2>>, Expression<Func<IPropertyBinderImplementation, T3>>, Expression<Func<IPropertyBinderImplementation, T4>>, Expression<Func<IPropertyBinderImplementation, T5>>, Expression<Func<IPropertyBinderImplementation, T6>>, Expression<Func<IPropertyBinderImplementation, T7>>, Expression<Func<IPropertyBinderImplementation, T8>>, Expression<Func<IPropertyBinderImplementation, T9>>, Func<IObservedChange<IPropertyBinderImplementation, T1>, IObservedChange<IPropertyBinderImplementation, T2>, IObservedChange<IPropertyBinderImplementation, T3>, IObservedChange<IPropertyBinderImplementation, T4>, IObservedChange<IPropertyBinderImplementation, T5>, IObservedChange<IPropertyBinderImplementation, T6>, IObservedChange<IPropertyBinderImplementation, T7>, IObservedChange<IPropertyBinderImplementation, T8>, IObservedChange<IPropertyBinderImplementation, T9>, TRet>) IObservable<TRet>
WhenAny allows you to observe whenever one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAny<IPropertyBinderImplementation, TRet, T1, T2, T3, T4, T5, T6, T7, T8>(Expression<Func<IPropertyBinderImplementation, T1>>, Expression<Func<IPropertyBinderImplementation, T2>>, Expression<Func<IPropertyBinderImplementation, T3>>, Expression<Func<IPropertyBinderImplementation, T4>>, Expression<Func<IPropertyBinderImplementation, T5>>, Expression<Func<IPropertyBinderImplementation, T6>>, Expression<Func<IPropertyBinderImplementation, T7>>, Expression<Func<IPropertyBinderImplementation, T8>>, Func<IObservedChange<IPropertyBinderImplementation, T1>, IObservedChange<IPropertyBinderImplementation, T2>, IObservedChange<IPropertyBinderImplementation, T3>, IObservedChange<IPropertyBinderImplementation, T4>, IObservedChange<IPropertyBinderImplementation, T5>, IObservedChange<IPropertyBinderImplementation, T6>, IObservedChange<IPropertyBinderImplementation, T7>, IObservedChange<IPropertyBinderImplementation, T8>, TRet>) IObservable<TRet>
WhenAny allows you to observe whenever one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAny<IPropertyBinderImplementation, TRet, T1, T2, T3, T4, T5, T6, T7>(Expression<Func<IPropertyBinderImplementation, T1>>, Expression<Func<IPropertyBinderImplementation, T2>>, Expression<Func<IPropertyBinderImplementation, T3>>, Expression<Func<IPropertyBinderImplementation, T4>>, Expression<Func<IPropertyBinderImplementation, T5>>, Expression<Func<IPropertyBinderImplementation, T6>>, Expression<Func<IPropertyBinderImplementation, T7>>, Func<IObservedChange<IPropertyBinderImplementation, T1>, IObservedChange<IPropertyBinderImplementation, T2>, IObservedChange<IPropertyBinderImplementation, T3>, IObservedChange<IPropertyBinderImplementation, T4>, IObservedChange<IPropertyBinderImplementation, T5>, IObservedChange<IPropertyBinderImplementation, T6>, IObservedChange<IPropertyBinderImplementation, T7>, TRet>) IObservable<TRet>
WhenAny allows you to observe whenever one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAny<IPropertyBinderImplementation, TRet, T1, T2, T3, T4, T5, T6>(Expression<Func<IPropertyBinderImplementation, T1>>, Expression<Func<IPropertyBinderImplementation, T2>>, Expression<Func<IPropertyBinderImplementation, T3>>, Expression<Func<IPropertyBinderImplementation, T4>>, Expression<Func<IPropertyBinderImplementation, T5>>, Expression<Func<IPropertyBinderImplementation, T6>>, Func<IObservedChange<IPropertyBinderImplementation, T1>, IObservedChange<IPropertyBinderImplementation, T2>, IObservedChange<IPropertyBinderImplementation, T3>, IObservedChange<IPropertyBinderImplementation, T4>, IObservedChange<IPropertyBinderImplementation, T5>, IObservedChange<IPropertyBinderImplementation, T6>, TRet>) IObservable<TRet>
WhenAny allows you to observe whenever one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAny<IPropertyBinderImplementation, TRet, T1, T2, T3, T4, T5>(Expression<Func<IPropertyBinderImplementation, T1>>, Expression<Func<IPropertyBinderImplementation, T2>>, Expression<Func<IPropertyBinderImplementation, T3>>, Expression<Func<IPropertyBinderImplementation, T4>>, Expression<Func<IPropertyBinderImplementation, T5>>, Func<IObservedChange<IPropertyBinderImplementation, T1>, IObservedChange<IPropertyBinderImplementation, T2>, IObservedChange<IPropertyBinderImplementation, T3>, IObservedChange<IPropertyBinderImplementation, T4>, IObservedChange<IPropertyBinderImplementation, T5>, TRet>) IObservable<TRet>
WhenAny allows you to observe whenever one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAny<IPropertyBinderImplementation, TRet, T1, T2, T3, T4>(Expression<Func<IPropertyBinderImplementation, T1>>, Expression<Func<IPropertyBinderImplementation, T2>>, Expression<Func<IPropertyBinderImplementation, T3>>, Expression<Func<IPropertyBinderImplementation, T4>>, Func<IObservedChange<IPropertyBinderImplementation, T1>, IObservedChange<IPropertyBinderImplementation, T2>, IObservedChange<IPropertyBinderImplementation, T3>, IObservedChange<IPropertyBinderImplementation, T4>, TRet>) IObservable<TRet>
WhenAny allows you to observe whenever one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAny<IPropertyBinderImplementation, TRet, T1, T2, T3>(Expression<Func<IPropertyBinderImplementation, T1>>, Expression<Func<IPropertyBinderImplementation, T2>>, Expression<Func<IPropertyBinderImplementation, T3>>, Func<IObservedChange<IPropertyBinderImplementation, T1>, IObservedChange<IPropertyBinderImplementation, T2>, IObservedChange<IPropertyBinderImplementation, T3>, TRet>) IObservable<TRet>
WhenAny allows you to observe whenever one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAny<IPropertyBinderImplementation, TRet, T1, T2>(Expression<Func<IPropertyBinderImplementation, T1>>, Expression<Func<IPropertyBinderImplementation, T2>>, Func<IObservedChange<IPropertyBinderImplementation, T1>, IObservedChange<IPropertyBinderImplementation, T2>, TRet>) IObservable<TRet>
WhenAny allows you to observe whenever one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAny<IPropertyBinderImplementation, TRet, T1>(Expression<Func<IPropertyBinderImplementation, T1>>, Func<IObservedChange<IPropertyBinderImplementation, T1>, TRet>) IObservable<TRet>
WhenAny allows you to observe whenever one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyDynamic<IPropertyBinderImplementation, TRet>(Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Func<IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, TRet>) IObservable<TRet>
WhenAny allows you to observe whenever one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyDynamic<IPropertyBinderImplementation, TRet>(Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Func<IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, TRet>) IObservable<TRet>
WhenAny allows you to observe whenever one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyDynamic<IPropertyBinderImplementation, TRet>(Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Func<IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, TRet>) IObservable<TRet>
WhenAny allows you to observe whenever one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyDynamic<IPropertyBinderImplementation, TRet>(Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Func<IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, TRet>) IObservable<TRet>
WhenAny allows you to observe whenever one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyDynamic<IPropertyBinderImplementation, TRet>(Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Func<IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, TRet>) IObservable<TRet>
WhenAny allows you to observe whenever one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyDynamic<IPropertyBinderImplementation, TRet>(Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Func<IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, TRet>) IObservable<TRet>
WhenAny allows you to observe whenever one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyDynamic<IPropertyBinderImplementation, TRet>(Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Func<IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, TRet>) IObservable<TRet>
WhenAny allows you to observe whenever one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyDynamic<IPropertyBinderImplementation, TRet>(Expression?, Expression?, Expression?, Expression?, Expression?, Func<IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, TRet>) IObservable<TRet>
WhenAny allows you to observe whenever one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyDynamic<IPropertyBinderImplementation, TRet>(Expression?, Expression?, Expression?, Expression?, Func<IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, TRet>) IObservable<TRet>
WhenAny allows you to observe whenever one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyDynamic<IPropertyBinderImplementation, TRet>(Expression?, Expression?, Expression?, Func<IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, TRet>) IObservable<TRet>
WhenAny allows you to observe whenever one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyDynamic<IPropertyBinderImplementation, TRet>(Expression?, Expression?, Func<IObservedChange<IPropertyBinderImplementation, object>, IObservedChange<IPropertyBinderImplementation, object>, TRet>) IObservable<TRet>
WhenAny allows you to observe whenever one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyDynamic<IPropertyBinderImplementation, TRet>(Expression?, Func<IObservedChange<IPropertyBinderImplementation, object>, TRet>) IObservable<TRet>
WhenAny allows you to observe whenever one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyObservable<IPropertyBinderImplementation, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>(Expression<Func<IPropertyBinderImplementation, IObservable<T1>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T2>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T3>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T4>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T5>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T6>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T7>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T8>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T9>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T10>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T11>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T12>>>, Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, TRet>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<IPropertyBinderImplementation, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>(Expression<Func<IPropertyBinderImplementation, IObservable<T1>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T2>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T3>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T4>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T5>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T6>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T7>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T8>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T9>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T10>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T11>>>, Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, TRet>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<IPropertyBinderImplementation, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>(Expression<Func<IPropertyBinderImplementation, IObservable<T1>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T2>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T3>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T4>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T5>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T6>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T7>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T8>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T9>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T10>>>, Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, TRet>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<IPropertyBinderImplementation, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9>(Expression<Func<IPropertyBinderImplementation, IObservable<T1>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T2>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T3>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T4>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T5>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T6>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T7>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T8>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T9>>>, Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, TRet>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<IPropertyBinderImplementation, TRet, T1, T2, T3, T4, T5, T6, T7, T8>(Expression<Func<IPropertyBinderImplementation, IObservable<T1>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T2>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T3>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T4>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T5>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T6>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T7>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T8>>>, Func<T1, T2, T3, T4, T5, T6, T7, T8, TRet>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<IPropertyBinderImplementation, TRet, T1, T2, T3, T4, T5, T6, T7>(Expression<Func<IPropertyBinderImplementation, IObservable<T1>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T2>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T3>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T4>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T5>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T6>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T7>>>, Func<T1, T2, T3, T4, T5, T6, T7, TRet>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<IPropertyBinderImplementation, TRet, T1, T2, T3, T4, T5, T6>(Expression<Func<IPropertyBinderImplementation, IObservable<T1>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T2>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T3>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T4>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T5>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T6>>>, Func<T1, T2, T3, T4, T5, T6, TRet>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<IPropertyBinderImplementation, TRet, T1, T2, T3, T4, T5>(Expression<Func<IPropertyBinderImplementation, IObservable<T1>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T2>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T3>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T4>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T5>>>, Func<T1, T2, T3, T4, T5, TRet>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<IPropertyBinderImplementation, TRet, T1, T2, T3, T4>(Expression<Func<IPropertyBinderImplementation, IObservable<T1>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T2>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T3>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T4>>>, Func<T1, T2, T3, T4, TRet>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<IPropertyBinderImplementation, TRet, T1, T2, T3>(Expression<Func<IPropertyBinderImplementation, IObservable<T1>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T2>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T3>>>, Func<T1, T2, T3, TRet>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<IPropertyBinderImplementation, TRet, T1, T2>(Expression<Func<IPropertyBinderImplementation, IObservable<T1>>>, Expression<Func<IPropertyBinderImplementation, IObservable<T2>>>, Func<T1, T2, TRet>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<IPropertyBinderImplementation, TRet>(Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>) IObservable<TRet>
Observe a observable which is set to a property, and automatically subscribe to the most recent emitted value.
WhenAnyObservable<IPropertyBinderImplementation, TRet>(Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<IPropertyBinderImplementation, TRet>(Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<IPropertyBinderImplementation, TRet>(Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<IPropertyBinderImplementation, TRet>(Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<IPropertyBinderImplementation, TRet>(Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<IPropertyBinderImplementation, TRet>(Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<IPropertyBinderImplementation, TRet>(Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<IPropertyBinderImplementation, TRet>(Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<IPropertyBinderImplementation, TRet>(Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<IPropertyBinderImplementation, TRet>(Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<IPropertyBinderImplementation, TRet>(Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>, Expression<Func<IPropertyBinderImplementation, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyValue<IPropertyBinderImplementation, T1, T2, T3, T4, T5, T6, T7>(Expression<Func<IPropertyBinderImplementation, T1>>, Expression<Func<IPropertyBinderImplementation, T2>>, Expression<Func<IPropertyBinderImplementation, T3>>, Expression<Func<IPropertyBinderImplementation, T4>>, Expression<Func<IPropertyBinderImplementation, T5>>, Expression<Func<IPropertyBinderImplementation, T6>>, Expression<Func<IPropertyBinderImplementation, T7>>) IObservable<(T1, T2, T3, T4, T5, T6, T7)>
WhenAnyValue allows you to observe whenever the value of one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyValue<IPropertyBinderImplementation, T1, T2, T3, T4, T5, T6>(Expression<Func<IPropertyBinderImplementation, T1>>, Expression<Func<IPropertyBinderImplementation, T2>>, Expression<Func<IPropertyBinderImplementation, T3>>, Expression<Func<IPropertyBinderImplementation, T4>>, Expression<Func<IPropertyBinderImplementation, T5>>, Expression<Func<IPropertyBinderImplementation, T6>>) IObservable<(T1, T2, T3, T4, T5, T6)>
WhenAnyValue allows you to observe whenever the value of one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyValue<IPropertyBinderImplementation, T1, T2, T3, T4, T5>(Expression<Func<IPropertyBinderImplementation, T1>>, Expression<Func<IPropertyBinderImplementation, T2>>, Expression<Func<IPropertyBinderImplementation, T3>>, Expression<Func<IPropertyBinderImplementation, T4>>, Expression<Func<IPropertyBinderImplementation, T5>>) IObservable<(T1, T2, T3, T4, T5)>
WhenAnyValue allows you to observe whenever the value of one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyValue<IPropertyBinderImplementation, T1, T2, T3, T4>(Expression<Func<IPropertyBinderImplementation, T1>>, Expression<Func<IPropertyBinderImplementation, T2>>, Expression<Func<IPropertyBinderImplementation, T3>>, Expression<Func<IPropertyBinderImplementation, T4>>) IObservable<(T1, T2, T3, T4)>
WhenAnyValue allows you to observe whenever the value of one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyValue<IPropertyBinderImplementation, T1, T2, T3>(Expression<Func<IPropertyBinderImplementation, T1>>, Expression<Func<IPropertyBinderImplementation, T2>>, Expression<Func<IPropertyBinderImplementation, T3>>) IObservable<(T1, T2, T3)>
WhenAnyValue allows you to observe whenever the value of one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyValue<IPropertyBinderImplementation, T1, T2>(Expression<Func<IPropertyBinderImplementation, T1>>, Expression<Func<IPropertyBinderImplementation, T2>>) IObservable<(T1, T2)>
WhenAnyValue allows you to observe whenever the value of one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyValue<IPropertyBinderImplementation, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>(Expression<Func<IPropertyBinderImplementation, T1>>, Expression<Func<IPropertyBinderImplementation, T2>>, Expression<Func<IPropertyBinderImplementation, T3>>, Expression<Func<IPropertyBinderImplementation, T4>>, Expression<Func<IPropertyBinderImplementation, T5>>, Expression<Func<IPropertyBinderImplementation, T6>>, Expression<Func<IPropertyBinderImplementation, T7>>, Expression<Func<IPropertyBinderImplementation, T8>>, Expression<Func<IPropertyBinderImplementation, T9>>, Expression<Func<IPropertyBinderImplementation, T10>>, Expression<Func<IPropertyBinderImplementation, T11>>, Expression<Func<IPropertyBinderImplementation, T12>>, Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, TRet>) IObservable<TRet>
WhenAnyValue allows you to observe whenever the value of one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyValue<IPropertyBinderImplementation, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>(Expression<Func<IPropertyBinderImplementation, T1>>, Expression<Func<IPropertyBinderImplementation, T2>>, Expression<Func<IPropertyBinderImplementation, T3>>, Expression<Func<IPropertyBinderImplementation, T4>>, Expression<Func<IPropertyBinderImplementation, T5>>, Expression<Func<IPropertyBinderImplementation, T6>>, Expression<Func<IPropertyBinderImplementation, T7>>, Expression<Func<IPropertyBinderImplementation, T8>>, Expression<Func<IPropertyBinderImplementation, T9>>, Expression<Func<IPropertyBinderImplementation, T10>>, Expression<Func<IPropertyBinderImplementation, T11>>, Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, TRet>) IObservable<TRet>
WhenAnyValue allows you to observe whenever the value of one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyValue<IPropertyBinderImplementation, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>(Expression<Func<IPropertyBinderImplementation, T1>>, Expression<Func<IPropertyBinderImplementation, T2>>, Expression<Func<IPropertyBinderImplementation, T3>>, Expression<Func<IPropertyBinderImplementation, T4>>, Expression<Func<IPropertyBinderImplementation, T5>>, Expression<Func<IPropertyBinderImplementation, T6>>, Expression<Func<IPropertyBinderImplementation, T7>>, Expression<Func<IPropertyBinderImplementation, T8>>, Expression<Func<IPropertyBinderImplementation, T9>>, Expression<Func<IPropertyBinderImplementation, T10>>, Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, TRet>) IObservable<TRet>
WhenAnyValue allows you to observe whenever the value of one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyValue<IPropertyBinderImplementation, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9>(Expression<Func<IPropertyBinderImplementation, T1>>, Expression<Func<IPropertyBinderImplementation, T2>>, Expression<Func<IPropertyBinderImplementation, T3>>, Expression<Func<IPropertyBinderImplementation, T4>>, Expression<Func<IPropertyBinderImplementation, T5>>, Expression<Func<IPropertyBinderImplementation, T6>>, Expression<Func<IPropertyBinderImplementation, T7>>, Expression<Func<IPropertyBinderImplementation, T8>>, Expression<Func<IPropertyBinderImplementation, T9>>, Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, TRet>) IObservable<TRet>
WhenAnyValue allows you to observe whenever the value of one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyValue<IPropertyBinderImplementation, TRet, T1, T2, T3, T4, T5, T6, T7, T8>(Expression<Func<IPropertyBinderImplementation, T1>>, Expression<Func<IPropertyBinderImplementation, T2>>, Expression<Func<IPropertyBinderImplementation, T3>>, Expression<Func<IPropertyBinderImplementation, T4>>, Expression<Func<IPropertyBinderImplementation, T5>>, Expression<Func<IPropertyBinderImplementation, T6>>, Expression<Func<IPropertyBinderImplementation, T7>>, Expression<Func<IPropertyBinderImplementation, T8>>, Func<T1, T2, T3, T4, T5, T6, T7, T8, TRet>) IObservable<TRet>
WhenAnyValue allows you to observe whenever the value of one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyValue<IPropertyBinderImplementation, TRet, T1, T2, T3, T4, T5, T6, T7>(Expression<Func<IPropertyBinderImplementation, T1>>, Expression<Func<IPropertyBinderImplementation, T2>>, Expression<Func<IPropertyBinderImplementation, T3>>, Expression<Func<IPropertyBinderImplementation, T4>>, Expression<Func<IPropertyBinderImplementation, T5>>, Expression<Func<IPropertyBinderImplementation, T6>>, Expression<Func<IPropertyBinderImplementation, T7>>, Func<T1, T2, T3, T4, T5, T6, T7, TRet>) IObservable<TRet>
WhenAnyValue allows you to observe whenever the value of one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyValue<IPropertyBinderImplementation, TRet, T1, T2, T3, T4, T5, T6>(Expression<Func<IPropertyBinderImplementation, T1>>, Expression<Func<IPropertyBinderImplementation, T2>>, Expression<Func<IPropertyBinderImplementation, T3>>, Expression<Func<IPropertyBinderImplementation, T4>>, Expression<Func<IPropertyBinderImplementation, T5>>, Expression<Func<IPropertyBinderImplementation, T6>>, Func<T1, T2, T3, T4, T5, T6, TRet>) IObservable<TRet>
WhenAnyValue allows you to observe whenever the value of one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyValue<IPropertyBinderImplementation, TRet, T1, T2, T3, T4, T5>(Expression<Func<IPropertyBinderImplementation, T1>>, Expression<Func<IPropertyBinderImplementation, T2>>, Expression<Func<IPropertyBinderImplementation, T3>>, Expression<Func<IPropertyBinderImplementation, T4>>, Expression<Func<IPropertyBinderImplementation, T5>>, Func<T1, T2, T3, T4, T5, TRet>) IObservable<TRet>
WhenAnyValue allows you to observe whenever the value of one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyValue<IPropertyBinderImplementation, TRet, T1, T2, T3, T4>(Expression<Func<IPropertyBinderImplementation, T1>>, Expression<Func<IPropertyBinderImplementation, T2>>, Expression<Func<IPropertyBinderImplementation, T3>>, Expression<Func<IPropertyBinderImplementation, T4>>, Func<T1, T2, T3, T4, TRet>) IObservable<TRet>
WhenAnyValue allows you to observe whenever the value of one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyValue<IPropertyBinderImplementation, TRet, T1, T2, T3>(Expression<Func<IPropertyBinderImplementation, T1>>, Expression<Func<IPropertyBinderImplementation, T2>>, Expression<Func<IPropertyBinderImplementation, T3>>, Func<T1, T2, T3, TRet>) IObservable<TRet>
WhenAnyValue allows you to observe whenever the value of one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyValue<IPropertyBinderImplementation, TRet, T1, T2>(Expression<Func<IPropertyBinderImplementation, T1>>, Expression<Func<IPropertyBinderImplementation, T2>>, Func<T1, T2, TRet>) IObservable<TRet>
WhenAnyValue allows you to observe whenever the value of one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyValue<IPropertyBinderImplementation, TRet, T1>(Expression<Func<IPropertyBinderImplementation, T1>>, Func<T1, TRet>) IObservable<TRet>
WhenAnyValue allows you to observe whenever the value of one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyValue<IPropertyBinderImplementation, TRet>(Expression<Func<IPropertyBinderImplementation, TRet>>) IObservable<TRet>
WhenAnyValue allows you to observe whenever the value of a property on an object has changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
With<IPropertyBinderImplementation, TKey, TField>(Dictionary<TKey, TField>, IDictionary<TKey, TField>) TBuilder
Adds the specified dictionary to the provided dictionary.