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

ReactiveViewHost<TViewModel> Class

Summary

A class that implements the Android ViewHolder pattern with a ViewModel. Use it along with GetViewHost.
Namespace
ReactiveUI
Interfaces
Base Types
graph BT Type-->Base0["LayoutViewHost"] click Base0 "/api/ReactiveUI/LayoutViewHost" Base0-->Base1["object"] Type-.->Interface0["ILayoutViewHost"] click Interface0 "/api/ReactiveUI/ILayoutViewHost" Type-.->Interface1["IViewFor<TViewModel>"] Type-.->Interface2["IViewFor"] click Interface2 "/api/ReactiveUI/IViewFor" Type-.->Interface3["IActivatableView"] click Interface3 "/api/ReactiveUI/IActivatableView" Type-.->Interface4["IReactiveNotifyPropertyChanged<ReactiveViewHost<TViewModel>>"] Type-.->Interface5["IReactiveObject"] click Interface5 "/api/ReactiveUI/IReactiveObject" Type-.->Interface6["INotifyPropertyChanged"] Type-.->Interface7["INotifyPropertyChanging"] Type-.->Interface8["IEnableLogger"] Type["ReactiveViewHost<TViewModel>"] class Type type-node

Syntax

public abstract class ReactiveViewHost<TViewModel> : LayoutViewHost, ILayoutViewHost, 
    IViewFor<TViewModel>, IViewFor, IActivatableView, 
    IReactiveNotifyPropertyChanged<ReactiveViewHost<TViewModel>>, IReactiveObject, 
    INotifyPropertyChanged, INotifyPropertyChanging, IEnableLogger
    where TViewModel : class, IReactiveObject

Type Parameters

Name Description
TViewModel The view model type.

Constructors

Name Summary
ReactiveViewHost() Initializes a new instance of the ReactiveViewHost<TViewModel> class.
ReactiveViewHost(Context, int, ViewGroup, bool, bool) Initializes a new instance of the ReactiveViewHost<TViewModel> class.

Events

Name Type Summary
PropertyChanged PropertyChangedEventHandler?
PropertyChanging PropertyChangingEventHandler?

Fields

Name Constant Value Summary
allPublicProperties
All public properties.

Properties

Name Value Summary
Changed IObservable<IReactivePropertyChangedEventArgs<ReactiveViewHost<TViewModel>>>
Gets an Observable that fires *after* a property has changed. Note that this should not fire duplicate change notifications if a property is set to the same value multiple times.
Changing IObservable<IReactivePropertyChangedEventArgs<ReactiveViewHost<TViewModel>>>
Gets an observable that fires *before* a property is about to be changed. Note that this should not fire duplicate change notifications if a property is set to the same value multiple times.
ThrownExceptions IObservable<Exception>
Gets the thrown exceptions.
View View?
Gets the view.
Inherited from LayoutViewHost
ViewModel TViewModel
Gets or sets the ViewModel corresponding to this specific View. This should be a DependencyProperty if you're using XAML.

Methods

Name Value Summary
AreChangeNotificationsEnabled() bool
Gets a value indicating if change notifications are enabled.
SuppressChangeNotifications() IDisposable
When this method is called, an object will not fire change notifications (neither traditional nor Observable notifications) until the return value is disposed.

Operators

Name Value Summary
implicit operator View?(LayoutViewHost) View?
Inherited from LayoutViewHost

Extension Methods

Name Value Summary
AutoPersist<ReactiveViewHost<TViewModel>, TDontCare>(Func<ReactiveViewHost<TViewModel>, IObservable<Unit>>, IObservable<TDontCare>, TimeSpan?) IDisposable
AutoPersist allows you to automatically call a method when an object has changed, throttling on a certain interval. Note that this object must mark its persistable properties via the [DataMember] attribute. Changes to properties not marked with DataMember will not trigger the object to be saved.
AutoPersist<ReactiveViewHost<TViewModel>>(Func<ReactiveViewHost<TViewModel>, IObservable<Unit>>, TimeSpan?) IDisposable
AutoPersist allows you to automatically call a method when an object has changed, throttling on a certain interval. Note that this object must mark its persistable properties via the [DataMember] attribute. Changes to properties not marked with DataMember will not trigger the object to be saved.
Bind<TViewModel, ReactiveViewHost<TViewModel>, TVMProp, TVProp, TDontCare>(TViewModel, Expression<Func<TViewModel, TVMProp>>, Expression<Func<ReactiveViewHost<TViewModel>, TVProp>>, IObservable<TDontCare>?, Func<TVMProp, TVProp>, Func<TVProp, TVMProp>, TriggerUpdate) IReactiveBinding<TView, (object view, bool isViewModel)>
Binds the specified view model property to the given view property.
Bind<TViewModel, ReactiveViewHost<TViewModel>, TVMProp, TVProp, TDontCare>(TViewModel, Expression<Func<TViewModel, TVMProp>>, Expression<Func<ReactiveViewHost<TViewModel>, TVProp>>, IObservable<TDontCare>?, object, IBindingTypeConverter, IBindingTypeConverter, TriggerUpdate) IReactiveBinding<TView, (object view, bool isViewModel)>
Binds the specified view model property to the given view property, and provide a custom view update signaler to signal when the view property has been updated.
Bind<TViewModel, ReactiveViewHost<TViewModel>, TVMProp, TVProp>(TViewModel, Expression<Func<TViewModel, TVMProp>>, Expression<Func<ReactiveViewHost<TViewModel>, TVProp>>, Func<TVMProp, TVProp>, Func<TVProp, TVMProp>) IReactiveBinding<TView, (object view, bool isViewModel)>
Binds the specified view model property to the given view property.
Bind<TViewModel, ReactiveViewHost<TViewModel>, TVMProp, TVProp>(TViewModel, Expression<Func<TViewModel, TVMProp>>, Expression<Func<ReactiveViewHost<TViewModel>, TVProp>>, object, IBindingTypeConverter, IBindingTypeConverter) IReactiveBinding<TView, (object view, bool isViewModel)>
Binds the specified view model property to the given view property.
BindCommand<ReactiveViewHost<TViewModel>, TViewModel, TProp, TControl, TParam>(TViewModel, Expression<Func<TViewModel, TProp>>, Expression<Func<ReactiveViewHost<TViewModel>, TControl>>, Expression<Func<TViewModel, TParam>>, string) IReactiveBinding<TView, TProp>
Bind a command from the ViewModel to an explicitly specified control on the View.
BindCommand<ReactiveViewHost<TViewModel>, TViewModel, TProp, TControl, TParam>(TViewModel, Expression<Func<TViewModel, TProp>>, Expression<Func<ReactiveViewHost<TViewModel>, TControl>>, IObservable<TParam>, string) IReactiveBinding<TView, TProp>
Bind a command from the ViewModel to an explicitly specified control on the View.
BindCommand<ReactiveViewHost<TViewModel>, TViewModel, TProp, TControl>(TViewModel, Expression<Func<TViewModel, TProp>>, Expression<Func<ReactiveViewHost<TViewModel>, TControl>>, string) IReactiveBinding<TView, TProp>
Bind a command from the ViewModel to an explicitly specified control on the View.
BindInteraction<TViewModel, ReactiveViewHost<TViewModel>, TInput, TOutput, TDontCare>(TViewModel, Expression<Func<TViewModel, IInteraction<TInput, TOutput>>>, Func<IInteractionContext<TInput, TOutput>, IObservable<TDontCare>>) IDisposable
Binds the IInteraction<TInput, TOutput> on a ViewModel to the specified handler.
BindInteraction<TViewModel, ReactiveViewHost<TViewModel>, TInput, TOutput>(TViewModel, Expression<Func<TViewModel, IInteraction<TInput, TOutput>>>, Func<IInteractionContext<TInput, TOutput>, Task>) IDisposable
Binds the IInteraction<TInput, TOutput> on a ViewModel to the specified handler.
BindValidation<ReactiveViewHost<TViewModel>, TViewModel, TViewModelProperty, TViewProperty>(TViewModel, Expression<Func<TViewModel, TViewModelProperty>>, Expression<Func<ReactiveViewHost<TViewModel>, TViewProperty>>, IValidationTextFormatter<string>) IDisposable
Binds the specified ViewModel property validation to the View property.
BindValidation<ReactiveViewHost<TViewModel>, TViewModel, TViewModelProperty>(TViewModel, Expression<Func<TViewModel, TViewModelProperty>>, TextInputLayout, IValidationTextFormatter<string>) IDisposable
Platform binding to the TextInputLayout.
BindValidation<ReactiveViewHost<TViewModel>, TViewModel, TViewModelProperty>(TViewModel, Expression<Func<TViewModel, TViewModelProperty>>, TextInputLayout, IValidationTextFormatter<string>) IDisposable
Platform binding to the TextInputLayout.
BindValidation<ReactiveViewHost<TViewModel>, TViewModel, TViewProperty>(TViewModel, Expression<Func<ReactiveViewHost<TViewModel>, TViewProperty>>, IValidationTextFormatter<string>) IDisposable
Binds the overall validation of a ViewModel to a specified View property.
BindValidation<ReactiveViewHost<TViewModel>, TViewModel, TViewProperty>(TViewModel, Expression<Func<TViewModel, ValidationHelper>>, Expression<Func<ReactiveViewHost<TViewModel>, TViewProperty>>, IValidationTextFormatter<string>) IDisposable
Binds a ValidationHelper from a ViewModel to a specified View property.
BindValidation<ReactiveViewHost<TViewModel>, TViewModel>(TViewModel, Expression<Func<TViewModel, ValidationHelper>>, TextInputLayout, IValidationTextFormatter<string>) IDisposable
Platform binding to the TextInputLayout.
BindValidation<ReactiveViewHost<TViewModel>, TViewModel>(TViewModel, Expression<Func<TViewModel, ValidationHelper>>, TextInputLayout, IValidationTextFormatter<string>) IDisposable
Platform binding to the TextInputLayout.
BindValidationEx<ReactiveViewHost<TViewModel>, TViewModel, TViewModelProperty>(TViewModel, Expression<Func<TViewModel, TViewModelProperty>>, TextInputLayout, IValidationTextFormatter<string>) IDisposable
Platform binding to the TextInputLayout.
BindValidationEx<ReactiveViewHost<TViewModel>, 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.
OneWayBind<TViewModel, ReactiveViewHost<TViewModel>, TProp, TOut>(TViewModel, Expression<Func<TViewModel, TProp>>, Expression<Func<ReactiveViewHost<TViewModel>, TOut>>, Func<TProp, TOut>) IReactiveBinding<TView, TOut>
Binds the specified view model property to the given view, in a one-way (view model to view) fashion, with the value of the view model property mapped through a selector function.
OneWayBind<TViewModel, ReactiveViewHost<TViewModel>, TVMProp, TVProp>(TViewModel, Expression<Func<TViewModel, TVMProp>>, Expression<Func<ReactiveViewHost<TViewModel>, TVProp>>, object, IBindingTypeConverter) IReactiveBinding<TView, TVProp>
Binds the given property on the view model to a given property on the view in a one-way (view model to view) fashion.
RaiseAndSetIfChanged<ReactiveViewHost<TViewModel>, TRet>(TRet, TRet, string) TRet
RaiseAndSetIfChanged fully implements a Setter for a read-write property on a ReactiveObject, using CallerMemberName to raise the notification and the ref to the backing field to set the property.
RaisePropertyChanged<ReactiveViewHost<TViewModel>>(string) void
Use this method in your ReactiveObject classes when creating custom properties where raiseAndSetIfChanged doesn't suffice.
RaisePropertyChanging<ReactiveViewHost<TViewModel>>(string) void
Use this method in your ReactiveObject classes when creating custom properties where raiseAndSetIfChanged doesn't suffice.
SubscribePropertyChangedEvents<ReactiveViewHost<TViewModel>>() void
Use this method for enabling classic PropertyChanged events when you are implementing IReactiveObject manually.
SubscribePropertyChangingEvents<ReactiveViewHost<TViewModel>>() void
Use this method for enabling classic PropertyChanging events when you are implementing IReactiveObject manually.
WhenAny<ReactiveViewHost<TViewModel>, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>(Expression<Func<ReactiveViewHost<TViewModel>, T1>>, Expression<Func<ReactiveViewHost<TViewModel>, T2>>, Expression<Func<ReactiveViewHost<TViewModel>, T3>>, Expression<Func<ReactiveViewHost<TViewModel>, T4>>, Expression<Func<ReactiveViewHost<TViewModel>, T5>>, Expression<Func<ReactiveViewHost<TViewModel>, T6>>, Expression<Func<ReactiveViewHost<TViewModel>, T7>>, Expression<Func<ReactiveViewHost<TViewModel>, T8>>, Expression<Func<ReactiveViewHost<TViewModel>, T9>>, Expression<Func<ReactiveViewHost<TViewModel>, T10>>, Expression<Func<ReactiveViewHost<TViewModel>, T11>>, Expression<Func<ReactiveViewHost<TViewModel>, T12>>, Func<IObservedChange<ReactiveViewHost<TViewModel>, T1>, IObservedChange<ReactiveViewHost<TViewModel>, T2>, IObservedChange<ReactiveViewHost<TViewModel>, T3>, IObservedChange<ReactiveViewHost<TViewModel>, T4>, IObservedChange<ReactiveViewHost<TViewModel>, T5>, IObservedChange<ReactiveViewHost<TViewModel>, T6>, IObservedChange<ReactiveViewHost<TViewModel>, T7>, IObservedChange<ReactiveViewHost<TViewModel>, T8>, IObservedChange<ReactiveViewHost<TViewModel>, T9>, IObservedChange<ReactiveViewHost<TViewModel>, T10>, IObservedChange<ReactiveViewHost<TViewModel>, T11>, IObservedChange<ReactiveViewHost<TViewModel>, 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<ReactiveViewHost<TViewModel>, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>(Expression<Func<ReactiveViewHost<TViewModel>, T1>>, Expression<Func<ReactiveViewHost<TViewModel>, T2>>, Expression<Func<ReactiveViewHost<TViewModel>, T3>>, Expression<Func<ReactiveViewHost<TViewModel>, T4>>, Expression<Func<ReactiveViewHost<TViewModel>, T5>>, Expression<Func<ReactiveViewHost<TViewModel>, T6>>, Expression<Func<ReactiveViewHost<TViewModel>, T7>>, Expression<Func<ReactiveViewHost<TViewModel>, T8>>, Expression<Func<ReactiveViewHost<TViewModel>, T9>>, Expression<Func<ReactiveViewHost<TViewModel>, T10>>, Expression<Func<ReactiveViewHost<TViewModel>, T11>>, Func<IObservedChange<ReactiveViewHost<TViewModel>, T1>, IObservedChange<ReactiveViewHost<TViewModel>, T2>, IObservedChange<ReactiveViewHost<TViewModel>, T3>, IObservedChange<ReactiveViewHost<TViewModel>, T4>, IObservedChange<ReactiveViewHost<TViewModel>, T5>, IObservedChange<ReactiveViewHost<TViewModel>, T6>, IObservedChange<ReactiveViewHost<TViewModel>, T7>, IObservedChange<ReactiveViewHost<TViewModel>, T8>, IObservedChange<ReactiveViewHost<TViewModel>, T9>, IObservedChange<ReactiveViewHost<TViewModel>, T10>, IObservedChange<ReactiveViewHost<TViewModel>, 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<ReactiveViewHost<TViewModel>, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>(Expression<Func<ReactiveViewHost<TViewModel>, T1>>, Expression<Func<ReactiveViewHost<TViewModel>, T2>>, Expression<Func<ReactiveViewHost<TViewModel>, T3>>, Expression<Func<ReactiveViewHost<TViewModel>, T4>>, Expression<Func<ReactiveViewHost<TViewModel>, T5>>, Expression<Func<ReactiveViewHost<TViewModel>, T6>>, Expression<Func<ReactiveViewHost<TViewModel>, T7>>, Expression<Func<ReactiveViewHost<TViewModel>, T8>>, Expression<Func<ReactiveViewHost<TViewModel>, T9>>, Expression<Func<ReactiveViewHost<TViewModel>, T10>>, Func<IObservedChange<ReactiveViewHost<TViewModel>, T1>, IObservedChange<ReactiveViewHost<TViewModel>, T2>, IObservedChange<ReactiveViewHost<TViewModel>, T3>, IObservedChange<ReactiveViewHost<TViewModel>, T4>, IObservedChange<ReactiveViewHost<TViewModel>, T5>, IObservedChange<ReactiveViewHost<TViewModel>, T6>, IObservedChange<ReactiveViewHost<TViewModel>, T7>, IObservedChange<ReactiveViewHost<TViewModel>, T8>, IObservedChange<ReactiveViewHost<TViewModel>, T9>, IObservedChange<ReactiveViewHost<TViewModel>, 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<ReactiveViewHost<TViewModel>, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9>(Expression<Func<ReactiveViewHost<TViewModel>, T1>>, Expression<Func<ReactiveViewHost<TViewModel>, T2>>, Expression<Func<ReactiveViewHost<TViewModel>, T3>>, Expression<Func<ReactiveViewHost<TViewModel>, T4>>, Expression<Func<ReactiveViewHost<TViewModel>, T5>>, Expression<Func<ReactiveViewHost<TViewModel>, T6>>, Expression<Func<ReactiveViewHost<TViewModel>, T7>>, Expression<Func<ReactiveViewHost<TViewModel>, T8>>, Expression<Func<ReactiveViewHost<TViewModel>, T9>>, Func<IObservedChange<ReactiveViewHost<TViewModel>, T1>, IObservedChange<ReactiveViewHost<TViewModel>, T2>, IObservedChange<ReactiveViewHost<TViewModel>, T3>, IObservedChange<ReactiveViewHost<TViewModel>, T4>, IObservedChange<ReactiveViewHost<TViewModel>, T5>, IObservedChange<ReactiveViewHost<TViewModel>, T6>, IObservedChange<ReactiveViewHost<TViewModel>, T7>, IObservedChange<ReactiveViewHost<TViewModel>, T8>, IObservedChange<ReactiveViewHost<TViewModel>, 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<ReactiveViewHost<TViewModel>, TRet, T1, T2, T3, T4, T5, T6, T7, T8>(Expression<Func<ReactiveViewHost<TViewModel>, T1>>, Expression<Func<ReactiveViewHost<TViewModel>, T2>>, Expression<Func<ReactiveViewHost<TViewModel>, T3>>, Expression<Func<ReactiveViewHost<TViewModel>, T4>>, Expression<Func<ReactiveViewHost<TViewModel>, T5>>, Expression<Func<ReactiveViewHost<TViewModel>, T6>>, Expression<Func<ReactiveViewHost<TViewModel>, T7>>, Expression<Func<ReactiveViewHost<TViewModel>, T8>>, Func<IObservedChange<ReactiveViewHost<TViewModel>, T1>, IObservedChange<ReactiveViewHost<TViewModel>, T2>, IObservedChange<ReactiveViewHost<TViewModel>, T3>, IObservedChange<ReactiveViewHost<TViewModel>, T4>, IObservedChange<ReactiveViewHost<TViewModel>, T5>, IObservedChange<ReactiveViewHost<TViewModel>, T6>, IObservedChange<ReactiveViewHost<TViewModel>, T7>, IObservedChange<ReactiveViewHost<TViewModel>, 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<ReactiveViewHost<TViewModel>, TRet, T1, T2, T3, T4, T5, T6, T7>(Expression<Func<ReactiveViewHost<TViewModel>, T1>>, Expression<Func<ReactiveViewHost<TViewModel>, T2>>, Expression<Func<ReactiveViewHost<TViewModel>, T3>>, Expression<Func<ReactiveViewHost<TViewModel>, T4>>, Expression<Func<ReactiveViewHost<TViewModel>, T5>>, Expression<Func<ReactiveViewHost<TViewModel>, T6>>, Expression<Func<ReactiveViewHost<TViewModel>, T7>>, Func<IObservedChange<ReactiveViewHost<TViewModel>, T1>, IObservedChange<ReactiveViewHost<TViewModel>, T2>, IObservedChange<ReactiveViewHost<TViewModel>, T3>, IObservedChange<ReactiveViewHost<TViewModel>, T4>, IObservedChange<ReactiveViewHost<TViewModel>, T5>, IObservedChange<ReactiveViewHost<TViewModel>, T6>, IObservedChange<ReactiveViewHost<TViewModel>, 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<ReactiveViewHost<TViewModel>, TRet, T1, T2, T3, T4, T5, T6>(Expression<Func<ReactiveViewHost<TViewModel>, T1>>, Expression<Func<ReactiveViewHost<TViewModel>, T2>>, Expression<Func<ReactiveViewHost<TViewModel>, T3>>, Expression<Func<ReactiveViewHost<TViewModel>, T4>>, Expression<Func<ReactiveViewHost<TViewModel>, T5>>, Expression<Func<ReactiveViewHost<TViewModel>, T6>>, Func<IObservedChange<ReactiveViewHost<TViewModel>, T1>, IObservedChange<ReactiveViewHost<TViewModel>, T2>, IObservedChange<ReactiveViewHost<TViewModel>, T3>, IObservedChange<ReactiveViewHost<TViewModel>, T4>, IObservedChange<ReactiveViewHost<TViewModel>, T5>, IObservedChange<ReactiveViewHost<TViewModel>, 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<ReactiveViewHost<TViewModel>, TRet, T1, T2, T3, T4, T5>(Expression<Func<ReactiveViewHost<TViewModel>, T1>>, Expression<Func<ReactiveViewHost<TViewModel>, T2>>, Expression<Func<ReactiveViewHost<TViewModel>, T3>>, Expression<Func<ReactiveViewHost<TViewModel>, T4>>, Expression<Func<ReactiveViewHost<TViewModel>, T5>>, Func<IObservedChange<ReactiveViewHost<TViewModel>, T1>, IObservedChange<ReactiveViewHost<TViewModel>, T2>, IObservedChange<ReactiveViewHost<TViewModel>, T3>, IObservedChange<ReactiveViewHost<TViewModel>, T4>, IObservedChange<ReactiveViewHost<TViewModel>, 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<ReactiveViewHost<TViewModel>, TRet, T1, T2, T3, T4>(Expression<Func<ReactiveViewHost<TViewModel>, T1>>, Expression<Func<ReactiveViewHost<TViewModel>, T2>>, Expression<Func<ReactiveViewHost<TViewModel>, T3>>, Expression<Func<ReactiveViewHost<TViewModel>, T4>>, Func<IObservedChange<ReactiveViewHost<TViewModel>, T1>, IObservedChange<ReactiveViewHost<TViewModel>, T2>, IObservedChange<ReactiveViewHost<TViewModel>, T3>, IObservedChange<ReactiveViewHost<TViewModel>, 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<ReactiveViewHost<TViewModel>, TRet, T1, T2, T3>(Expression<Func<ReactiveViewHost<TViewModel>, T1>>, Expression<Func<ReactiveViewHost<TViewModel>, T2>>, Expression<Func<ReactiveViewHost<TViewModel>, T3>>, Func<IObservedChange<ReactiveViewHost<TViewModel>, T1>, IObservedChange<ReactiveViewHost<TViewModel>, T2>, IObservedChange<ReactiveViewHost<TViewModel>, 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<ReactiveViewHost<TViewModel>, TRet, T1, T2>(Expression<Func<ReactiveViewHost<TViewModel>, T1>>, Expression<Func<ReactiveViewHost<TViewModel>, T2>>, Func<IObservedChange<ReactiveViewHost<TViewModel>, T1>, IObservedChange<ReactiveViewHost<TViewModel>, 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<ReactiveViewHost<TViewModel>, TRet, T1>(Expression<Func<ReactiveViewHost<TViewModel>, T1>>, Func<IObservedChange<ReactiveViewHost<TViewModel>, 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<ReactiveViewHost<TViewModel>, TRet>(Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Func<IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, 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<ReactiveViewHost<TViewModel>, TRet>(Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Func<IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, 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<ReactiveViewHost<TViewModel>, TRet>(Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Func<IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, 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<ReactiveViewHost<TViewModel>, TRet>(Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Func<IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, 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<ReactiveViewHost<TViewModel>, TRet>(Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Func<IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, 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<ReactiveViewHost<TViewModel>, TRet>(Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Func<IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, 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<ReactiveViewHost<TViewModel>, TRet>(Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Func<IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, 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<ReactiveViewHost<TViewModel>, TRet>(Expression?, Expression?, Expression?, Expression?, Expression?, Func<IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, 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<ReactiveViewHost<TViewModel>, TRet>(Expression?, Expression?, Expression?, Expression?, Func<IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, 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<ReactiveViewHost<TViewModel>, TRet>(Expression?, Expression?, Expression?, Func<IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, 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<ReactiveViewHost<TViewModel>, TRet>(Expression?, Expression?, Func<IObservedChange<ReactiveViewHost<TViewModel>, object>, IObservedChange<ReactiveViewHost<TViewModel>, 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<ReactiveViewHost<TViewModel>, TRet>(Expression?, Func<IObservedChange<ReactiveViewHost<TViewModel>, 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<ReactiveViewHost<TViewModel>, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>(Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T1>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T2>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T3>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T4>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T5>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T6>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T7>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T8>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T9>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T10>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T11>>>, Expression<Func<ReactiveViewHost<TViewModel>, 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<ReactiveViewHost<TViewModel>, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>(Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T1>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T2>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T3>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T4>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T5>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T6>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T7>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T8>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T9>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T10>>>, Expression<Func<ReactiveViewHost<TViewModel>, 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<ReactiveViewHost<TViewModel>, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>(Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T1>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T2>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T3>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T4>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T5>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T6>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T7>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T8>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T9>>>, Expression<Func<ReactiveViewHost<TViewModel>, 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<ReactiveViewHost<TViewModel>, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9>(Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T1>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T2>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T3>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T4>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T5>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T6>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T7>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T8>>>, Expression<Func<ReactiveViewHost<TViewModel>, 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<ReactiveViewHost<TViewModel>, TRet, T1, T2, T3, T4, T5, T6, T7, T8>(Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T1>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T2>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T3>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T4>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T5>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T6>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T7>>>, Expression<Func<ReactiveViewHost<TViewModel>, 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<ReactiveViewHost<TViewModel>, TRet, T1, T2, T3, T4, T5, T6, T7>(Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T1>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T2>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T3>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T4>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T5>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T6>>>, Expression<Func<ReactiveViewHost<TViewModel>, 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<ReactiveViewHost<TViewModel>, TRet, T1, T2, T3, T4, T5, T6>(Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T1>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T2>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T3>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T4>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T5>>>, Expression<Func<ReactiveViewHost<TViewModel>, 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<ReactiveViewHost<TViewModel>, TRet, T1, T2, T3, T4, T5>(Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T1>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T2>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T3>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T4>>>, Expression<Func<ReactiveViewHost<TViewModel>, 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<ReactiveViewHost<TViewModel>, TRet, T1, T2, T3, T4>(Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T1>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T2>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T3>>>, Expression<Func<ReactiveViewHost<TViewModel>, 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<ReactiveViewHost<TViewModel>, TRet, T1, T2, T3>(Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T1>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T2>>>, Expression<Func<ReactiveViewHost<TViewModel>, 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<ReactiveViewHost<TViewModel>, TRet, T1, T2>(Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T1>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<T2>>>, Func<T1, T2, TRet>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveViewHost<TViewModel>, TRet>(Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>) IObservable<TRet>
Observe a observable which is set to a property, and automatically subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveViewHost<TViewModel>, TRet>(Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveViewHost<TViewModel>, TRet>(Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveViewHost<TViewModel>, TRet>(Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveViewHost<TViewModel>, TRet>(Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveViewHost<TViewModel>, TRet>(Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveViewHost<TViewModel>, TRet>(Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveViewHost<TViewModel>, TRet>(Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveViewHost<TViewModel>, TRet>(Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveViewHost<TViewModel>, TRet>(Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveViewHost<TViewModel>, TRet>(Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveViewHost<TViewModel>, TRet>(Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveViewHost<TViewModel>, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyValue<ReactiveViewHost<TViewModel>, T1, T2, T3, T4, T5, T6, T7>(Expression<Func<ReactiveViewHost<TViewModel>, T1>>, Expression<Func<ReactiveViewHost<TViewModel>, T2>>, Expression<Func<ReactiveViewHost<TViewModel>, T3>>, Expression<Func<ReactiveViewHost<TViewModel>, T4>>, Expression<Func<ReactiveViewHost<TViewModel>, T5>>, Expression<Func<ReactiveViewHost<TViewModel>, T6>>, Expression<Func<ReactiveViewHost<TViewModel>, 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<ReactiveViewHost<TViewModel>, T1, T2, T3, T4, T5, T6>(Expression<Func<ReactiveViewHost<TViewModel>, T1>>, Expression<Func<ReactiveViewHost<TViewModel>, T2>>, Expression<Func<ReactiveViewHost<TViewModel>, T3>>, Expression<Func<ReactiveViewHost<TViewModel>, T4>>, Expression<Func<ReactiveViewHost<TViewModel>, T5>>, Expression<Func<ReactiveViewHost<TViewModel>, 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<ReactiveViewHost<TViewModel>, T1, T2, T3, T4, T5>(Expression<Func<ReactiveViewHost<TViewModel>, T1>>, Expression<Func<ReactiveViewHost<TViewModel>, T2>>, Expression<Func<ReactiveViewHost<TViewModel>, T3>>, Expression<Func<ReactiveViewHost<TViewModel>, T4>>, Expression<Func<ReactiveViewHost<TViewModel>, 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<ReactiveViewHost<TViewModel>, T1, T2, T3, T4>(Expression<Func<ReactiveViewHost<TViewModel>, T1>>, Expression<Func<ReactiveViewHost<TViewModel>, T2>>, Expression<Func<ReactiveViewHost<TViewModel>, T3>>, Expression<Func<ReactiveViewHost<TViewModel>, 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<ReactiveViewHost<TViewModel>, T1, T2, T3>(Expression<Func<ReactiveViewHost<TViewModel>, T1>>, Expression<Func<ReactiveViewHost<TViewModel>, T2>>, Expression<Func<ReactiveViewHost<TViewModel>, 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<ReactiveViewHost<TViewModel>, T1, T2>(Expression<Func<ReactiveViewHost<TViewModel>, T1>>, Expression<Func<ReactiveViewHost<TViewModel>, 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<ReactiveViewHost<TViewModel>, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>(Expression<Func<ReactiveViewHost<TViewModel>, T1>>, Expression<Func<ReactiveViewHost<TViewModel>, T2>>, Expression<Func<ReactiveViewHost<TViewModel>, T3>>, Expression<Func<ReactiveViewHost<TViewModel>, T4>>, Expression<Func<ReactiveViewHost<TViewModel>, T5>>, Expression<Func<ReactiveViewHost<TViewModel>, T6>>, Expression<Func<ReactiveViewHost<TViewModel>, T7>>, Expression<Func<ReactiveViewHost<TViewModel>, T8>>, Expression<Func<ReactiveViewHost<TViewModel>, T9>>, Expression<Func<ReactiveViewHost<TViewModel>, T10>>, Expression<Func<ReactiveViewHost<TViewModel>, T11>>, Expression<Func<ReactiveViewHost<TViewModel>, 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<ReactiveViewHost<TViewModel>, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>(Expression<Func<ReactiveViewHost<TViewModel>, T1>>, Expression<Func<ReactiveViewHost<TViewModel>, T2>>, Expression<Func<ReactiveViewHost<TViewModel>, T3>>, Expression<Func<ReactiveViewHost<TViewModel>, T4>>, Expression<Func<ReactiveViewHost<TViewModel>, T5>>, Expression<Func<ReactiveViewHost<TViewModel>, T6>>, Expression<Func<ReactiveViewHost<TViewModel>, T7>>, Expression<Func<ReactiveViewHost<TViewModel>, T8>>, Expression<Func<ReactiveViewHost<TViewModel>, T9>>, Expression<Func<ReactiveViewHost<TViewModel>, T10>>, Expression<Func<ReactiveViewHost<TViewModel>, 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<ReactiveViewHost<TViewModel>, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>(Expression<Func<ReactiveViewHost<TViewModel>, T1>>, Expression<Func<ReactiveViewHost<TViewModel>, T2>>, Expression<Func<ReactiveViewHost<TViewModel>, T3>>, Expression<Func<ReactiveViewHost<TViewModel>, T4>>, Expression<Func<ReactiveViewHost<TViewModel>, T5>>, Expression<Func<ReactiveViewHost<TViewModel>, T6>>, Expression<Func<ReactiveViewHost<TViewModel>, T7>>, Expression<Func<ReactiveViewHost<TViewModel>, T8>>, Expression<Func<ReactiveViewHost<TViewModel>, T9>>, Expression<Func<ReactiveViewHost<TViewModel>, 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<ReactiveViewHost<TViewModel>, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9>(Expression<Func<ReactiveViewHost<TViewModel>, T1>>, Expression<Func<ReactiveViewHost<TViewModel>, T2>>, Expression<Func<ReactiveViewHost<TViewModel>, T3>>, Expression<Func<ReactiveViewHost<TViewModel>, T4>>, Expression<Func<ReactiveViewHost<TViewModel>, T5>>, Expression<Func<ReactiveViewHost<TViewModel>, T6>>, Expression<Func<ReactiveViewHost<TViewModel>, T7>>, Expression<Func<ReactiveViewHost<TViewModel>, T8>>, Expression<Func<ReactiveViewHost<TViewModel>, 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<ReactiveViewHost<TViewModel>, TRet, T1, T2, T3, T4, T5, T6, T7, T8>(Expression<Func<ReactiveViewHost<TViewModel>, T1>>, Expression<Func<ReactiveViewHost<TViewModel>, T2>>, Expression<Func<ReactiveViewHost<TViewModel>, T3>>, Expression<Func<ReactiveViewHost<TViewModel>, T4>>, Expression<Func<ReactiveViewHost<TViewModel>, T5>>, Expression<Func<ReactiveViewHost<TViewModel>, T6>>, Expression<Func<ReactiveViewHost<TViewModel>, T7>>, Expression<Func<ReactiveViewHost<TViewModel>, 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<ReactiveViewHost<TViewModel>, TRet, T1, T2, T3, T4, T5, T6, T7>(Expression<Func<ReactiveViewHost<TViewModel>, T1>>, Expression<Func<ReactiveViewHost<TViewModel>, T2>>, Expression<Func<ReactiveViewHost<TViewModel>, T3>>, Expression<Func<ReactiveViewHost<TViewModel>, T4>>, Expression<Func<ReactiveViewHost<TViewModel>, T5>>, Expression<Func<ReactiveViewHost<TViewModel>, T6>>, Expression<Func<ReactiveViewHost<TViewModel>, 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<ReactiveViewHost<TViewModel>, TRet, T1, T2, T3, T4, T5, T6>(Expression<Func<ReactiveViewHost<TViewModel>, T1>>, Expression<Func<ReactiveViewHost<TViewModel>, T2>>, Expression<Func<ReactiveViewHost<TViewModel>, T3>>, Expression<Func<ReactiveViewHost<TViewModel>, T4>>, Expression<Func<ReactiveViewHost<TViewModel>, T5>>, Expression<Func<ReactiveViewHost<TViewModel>, 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<ReactiveViewHost<TViewModel>, TRet, T1, T2, T3, T4, T5>(Expression<Func<ReactiveViewHost<TViewModel>, T1>>, Expression<Func<ReactiveViewHost<TViewModel>, T2>>, Expression<Func<ReactiveViewHost<TViewModel>, T3>>, Expression<Func<ReactiveViewHost<TViewModel>, T4>>, Expression<Func<ReactiveViewHost<TViewModel>, 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<ReactiveViewHost<TViewModel>, TRet, T1, T2, T3, T4>(Expression<Func<ReactiveViewHost<TViewModel>, T1>>, Expression<Func<ReactiveViewHost<TViewModel>, T2>>, Expression<Func<ReactiveViewHost<TViewModel>, T3>>, Expression<Func<ReactiveViewHost<TViewModel>, 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<ReactiveViewHost<TViewModel>, TRet, T1, T2, T3>(Expression<Func<ReactiveViewHost<TViewModel>, T1>>, Expression<Func<ReactiveViewHost<TViewModel>, T2>>, Expression<Func<ReactiveViewHost<TViewModel>, 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<ReactiveViewHost<TViewModel>, TRet, T1, T2>(Expression<Func<ReactiveViewHost<TViewModel>, T1>>, Expression<Func<ReactiveViewHost<TViewModel>, 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<ReactiveViewHost<TViewModel>, TRet, T1>(Expression<Func<ReactiveViewHost<TViewModel>, 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<ReactiveViewHost<TViewModel>, TRet>(Expression<Func<ReactiveViewHost<TViewModel>, 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.
WireUpControls(ControlFetcherMixin.ResolveStrategy) void
Wires a control to a property.
With<ReactiveViewHost<TViewModel>, TKey, TField>(Dictionary<TKey, TField>, IDictionary<TKey, TField>) TBuilder
Adds the specified dictionary to the provided dictionary.