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

ReactiveComponentBase<T> Class

Summary

A base component for handling property changes and updating the blazer view appropriately.
Namespace
ReactiveUI.Blazor
Interfaces
Base Types
  • ComponentBase
graph BT Type-->Base0["ComponentBase"] Type-.->Interface0["IViewFor<T>"] Type-.->Interface1["IViewFor"] click Interface1 "/api/ReactiveUI/IViewFor" Type-.->Interface2["IActivatableView"] click Interface2 "/api/ReactiveUI/IActivatableView" Type-.->Interface3["INotifyPropertyChanged"] Type-.->Interface4["ICanActivate"] click Interface4 "/api/ReactiveUI/ICanActivate" Type-.->Interface5["IDisposable"] Type["ReactiveComponentBase<T>"] class Type type-node

Syntax

public class ReactiveComponentBase<T> : ComponentBase, IViewFor<T>, IViewFor, IActivatableView, 
    INotifyPropertyChanged, ICanActivate, IDisposable
    where T : class, INotifyPropertyChanged

Type Parameters

Name Description
T The type of view model. Must support INotifyPropertyChanged.

Events

Name Type Summary
PropertyChanged PropertyChangedEventHandler?

Properties

Name Value Summary
Activated IObservable<Unit>
Gets a observable which is triggered when the ViewModel is activated.
Deactivated IObservable<Unit>
Gets a observable which is triggered when the ViewModel is deactivated.
ViewModel T
Gets or sets the ViewModel corresponding to this specific View. This should be a DependencyProperty if you're using XAML.

Methods

Name Value Summary
Dispose() void
Dispose(bool) void
Cleans up the managed resources of the object.
OnAfterRender(bool) void
OnInitialized() void
OnPropertyChanged(string) void
Invokes the property changed event.

Extension Methods

Name Value Summary
Bind<TViewModel, ReactiveComponentBase<T>, TVMProp, TVProp, TDontCare>(TViewModel, Expression<Func<TViewModel, TVMProp>>, Expression<Func<ReactiveComponentBase<T>, 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, ReactiveComponentBase<T>, TVMProp, TVProp, TDontCare>(TViewModel, Expression<Func<TViewModel, TVMProp>>, Expression<Func<ReactiveComponentBase<T>, 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, ReactiveComponentBase<T>, TVMProp, TVProp>(TViewModel, Expression<Func<TViewModel, TVMProp>>, Expression<Func<ReactiveComponentBase<T>, 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, ReactiveComponentBase<T>, TVMProp, TVProp>(TViewModel, Expression<Func<TViewModel, TVMProp>>, Expression<Func<ReactiveComponentBase<T>, TVProp>>, object, IBindingTypeConverter, IBindingTypeConverter) IReactiveBinding<TView, (object view, bool isViewModel)>
Binds the specified view model property to the given view property.
BindCommand<ReactiveComponentBase<T>, TViewModel, TProp, TControl, TParam>(TViewModel, Expression<Func<TViewModel, TProp>>, Expression<Func<ReactiveComponentBase<T>, TControl>>, Expression<Func<TViewModel, TParam>>, string) IReactiveBinding<TView, TProp>
Bind a command from the ViewModel to an explicitly specified control on the View.
BindCommand<ReactiveComponentBase<T>, TViewModel, TProp, TControl, TParam>(TViewModel, Expression<Func<TViewModel, TProp>>, Expression<Func<ReactiveComponentBase<T>, TControl>>, IObservable<TParam>, string) IReactiveBinding<TView, TProp>
Bind a command from the ViewModel to an explicitly specified control on the View.
BindCommand<ReactiveComponentBase<T>, TViewModel, TProp, TControl>(TViewModel, Expression<Func<TViewModel, TProp>>, Expression<Func<ReactiveComponentBase<T>, TControl>>, string) IReactiveBinding<TView, TProp>
Bind a command from the ViewModel to an explicitly specified control on the View.
BindInteraction<TViewModel, ReactiveComponentBase<T>, 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, ReactiveComponentBase<T>, 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<ReactiveComponentBase<T>, TViewModel, TViewModelProperty, TViewProperty>(TViewModel, Expression<Func<TViewModel, TViewModelProperty>>, Expression<Func<ReactiveComponentBase<T>, TViewProperty>>, IValidationTextFormatter<string>) IDisposable
Binds the specified ViewModel property validation to the View property.
BindValidation<ReactiveComponentBase<T>, TViewModel, TViewModelProperty>(TViewModel, Expression<Func<TViewModel, TViewModelProperty>>, TextInputLayout, IValidationTextFormatter<string>) IDisposable
Platform binding to the TextInputLayout.
BindValidation<ReactiveComponentBase<T>, TViewModel, TViewModelProperty>(TViewModel, Expression<Func<TViewModel, TViewModelProperty>>, TextInputLayout, IValidationTextFormatter<string>) IDisposable
Platform binding to the TextInputLayout.
BindValidation<ReactiveComponentBase<T>, TViewModel, TViewProperty>(TViewModel, Expression<Func<ReactiveComponentBase<T>, TViewProperty>>, IValidationTextFormatter<string>) IDisposable
Binds the overall validation of a ViewModel to a specified View property.
BindValidation<ReactiveComponentBase<T>, TViewModel, TViewProperty>(TViewModel, Expression<Func<TViewModel, ValidationHelper>>, Expression<Func<ReactiveComponentBase<T>, TViewProperty>>, IValidationTextFormatter<string>) IDisposable
Binds a ValidationHelper from a ViewModel to a specified View property.
BindValidation<ReactiveComponentBase<T>, TViewModel>(TViewModel, Expression<Func<TViewModel, ValidationHelper>>, TextInputLayout, IValidationTextFormatter<string>) IDisposable
Platform binding to the TextInputLayout.
BindValidation<ReactiveComponentBase<T>, TViewModel>(TViewModel, Expression<Func<TViewModel, ValidationHelper>>, TextInputLayout, IValidationTextFormatter<string>) IDisposable
Platform binding to the TextInputLayout.
BindValidationEx<ReactiveComponentBase<T>, TViewModel, TViewModelProperty>(TViewModel, Expression<Func<TViewModel, TViewModelProperty>>, TextInputLayout, IValidationTextFormatter<string>) IDisposable
Platform binding to the TextInputLayout.
BindValidationEx<ReactiveComponentBase<T>, 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, ReactiveComponentBase<T>, TProp, TOut>(TViewModel, Expression<Func<TViewModel, TProp>>, Expression<Func<ReactiveComponentBase<T>, 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, ReactiveComponentBase<T>, TVMProp, TVProp>(TViewModel, Expression<Func<TViewModel, TVMProp>>, Expression<Func<ReactiveComponentBase<T>, 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.
WhenAny<ReactiveComponentBase<T>, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>(Expression<Func<ReactiveComponentBase<T>, T1>>, Expression<Func<ReactiveComponentBase<T>, T2>>, Expression<Func<ReactiveComponentBase<T>, T3>>, Expression<Func<ReactiveComponentBase<T>, T4>>, Expression<Func<ReactiveComponentBase<T>, T5>>, Expression<Func<ReactiveComponentBase<T>, T6>>, Expression<Func<ReactiveComponentBase<T>, T7>>, Expression<Func<ReactiveComponentBase<T>, T8>>, Expression<Func<ReactiveComponentBase<T>, T9>>, Expression<Func<ReactiveComponentBase<T>, T10>>, Expression<Func<ReactiveComponentBase<T>, T11>>, Expression<Func<ReactiveComponentBase<T>, T12>>, Func<IObservedChange<ReactiveComponentBase<T>, T1>, IObservedChange<ReactiveComponentBase<T>, T2>, IObservedChange<ReactiveComponentBase<T>, T3>, IObservedChange<ReactiveComponentBase<T>, T4>, IObservedChange<ReactiveComponentBase<T>, T5>, IObservedChange<ReactiveComponentBase<T>, T6>, IObservedChange<ReactiveComponentBase<T>, T7>, IObservedChange<ReactiveComponentBase<T>, T8>, IObservedChange<ReactiveComponentBase<T>, T9>, IObservedChange<ReactiveComponentBase<T>, T10>, IObservedChange<ReactiveComponentBase<T>, T11>, IObservedChange<ReactiveComponentBase<T>, 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<ReactiveComponentBase<T>, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>(Expression<Func<ReactiveComponentBase<T>, T1>>, Expression<Func<ReactiveComponentBase<T>, T2>>, Expression<Func<ReactiveComponentBase<T>, T3>>, Expression<Func<ReactiveComponentBase<T>, T4>>, Expression<Func<ReactiveComponentBase<T>, T5>>, Expression<Func<ReactiveComponentBase<T>, T6>>, Expression<Func<ReactiveComponentBase<T>, T7>>, Expression<Func<ReactiveComponentBase<T>, T8>>, Expression<Func<ReactiveComponentBase<T>, T9>>, Expression<Func<ReactiveComponentBase<T>, T10>>, Expression<Func<ReactiveComponentBase<T>, T11>>, Func<IObservedChange<ReactiveComponentBase<T>, T1>, IObservedChange<ReactiveComponentBase<T>, T2>, IObservedChange<ReactiveComponentBase<T>, T3>, IObservedChange<ReactiveComponentBase<T>, T4>, IObservedChange<ReactiveComponentBase<T>, T5>, IObservedChange<ReactiveComponentBase<T>, T6>, IObservedChange<ReactiveComponentBase<T>, T7>, IObservedChange<ReactiveComponentBase<T>, T8>, IObservedChange<ReactiveComponentBase<T>, T9>, IObservedChange<ReactiveComponentBase<T>, T10>, IObservedChange<ReactiveComponentBase<T>, 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<ReactiveComponentBase<T>, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>(Expression<Func<ReactiveComponentBase<T>, T1>>, Expression<Func<ReactiveComponentBase<T>, T2>>, Expression<Func<ReactiveComponentBase<T>, T3>>, Expression<Func<ReactiveComponentBase<T>, T4>>, Expression<Func<ReactiveComponentBase<T>, T5>>, Expression<Func<ReactiveComponentBase<T>, T6>>, Expression<Func<ReactiveComponentBase<T>, T7>>, Expression<Func<ReactiveComponentBase<T>, T8>>, Expression<Func<ReactiveComponentBase<T>, T9>>, Expression<Func<ReactiveComponentBase<T>, T10>>, Func<IObservedChange<ReactiveComponentBase<T>, T1>, IObservedChange<ReactiveComponentBase<T>, T2>, IObservedChange<ReactiveComponentBase<T>, T3>, IObservedChange<ReactiveComponentBase<T>, T4>, IObservedChange<ReactiveComponentBase<T>, T5>, IObservedChange<ReactiveComponentBase<T>, T6>, IObservedChange<ReactiveComponentBase<T>, T7>, IObservedChange<ReactiveComponentBase<T>, T8>, IObservedChange<ReactiveComponentBase<T>, T9>, IObservedChange<ReactiveComponentBase<T>, 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<ReactiveComponentBase<T>, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9>(Expression<Func<ReactiveComponentBase<T>, T1>>, Expression<Func<ReactiveComponentBase<T>, T2>>, Expression<Func<ReactiveComponentBase<T>, T3>>, Expression<Func<ReactiveComponentBase<T>, T4>>, Expression<Func<ReactiveComponentBase<T>, T5>>, Expression<Func<ReactiveComponentBase<T>, T6>>, Expression<Func<ReactiveComponentBase<T>, T7>>, Expression<Func<ReactiveComponentBase<T>, T8>>, Expression<Func<ReactiveComponentBase<T>, T9>>, Func<IObservedChange<ReactiveComponentBase<T>, T1>, IObservedChange<ReactiveComponentBase<T>, T2>, IObservedChange<ReactiveComponentBase<T>, T3>, IObservedChange<ReactiveComponentBase<T>, T4>, IObservedChange<ReactiveComponentBase<T>, T5>, IObservedChange<ReactiveComponentBase<T>, T6>, IObservedChange<ReactiveComponentBase<T>, T7>, IObservedChange<ReactiveComponentBase<T>, T8>, IObservedChange<ReactiveComponentBase<T>, 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<ReactiveComponentBase<T>, TRet, T1, T2, T3, T4, T5, T6, T7, T8>(Expression<Func<ReactiveComponentBase<T>, T1>>, Expression<Func<ReactiveComponentBase<T>, T2>>, Expression<Func<ReactiveComponentBase<T>, T3>>, Expression<Func<ReactiveComponentBase<T>, T4>>, Expression<Func<ReactiveComponentBase<T>, T5>>, Expression<Func<ReactiveComponentBase<T>, T6>>, Expression<Func<ReactiveComponentBase<T>, T7>>, Expression<Func<ReactiveComponentBase<T>, T8>>, Func<IObservedChange<ReactiveComponentBase<T>, T1>, IObservedChange<ReactiveComponentBase<T>, T2>, IObservedChange<ReactiveComponentBase<T>, T3>, IObservedChange<ReactiveComponentBase<T>, T4>, IObservedChange<ReactiveComponentBase<T>, T5>, IObservedChange<ReactiveComponentBase<T>, T6>, IObservedChange<ReactiveComponentBase<T>, T7>, IObservedChange<ReactiveComponentBase<T>, 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<ReactiveComponentBase<T>, TRet, T1, T2, T3, T4, T5, T6, T7>(Expression<Func<ReactiveComponentBase<T>, T1>>, Expression<Func<ReactiveComponentBase<T>, T2>>, Expression<Func<ReactiveComponentBase<T>, T3>>, Expression<Func<ReactiveComponentBase<T>, T4>>, Expression<Func<ReactiveComponentBase<T>, T5>>, Expression<Func<ReactiveComponentBase<T>, T6>>, Expression<Func<ReactiveComponentBase<T>, T7>>, Func<IObservedChange<ReactiveComponentBase<T>, T1>, IObservedChange<ReactiveComponentBase<T>, T2>, IObservedChange<ReactiveComponentBase<T>, T3>, IObservedChange<ReactiveComponentBase<T>, T4>, IObservedChange<ReactiveComponentBase<T>, T5>, IObservedChange<ReactiveComponentBase<T>, T6>, IObservedChange<ReactiveComponentBase<T>, 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<ReactiveComponentBase<T>, TRet, T1, T2, T3, T4, T5, T6>(Expression<Func<ReactiveComponentBase<T>, T1>>, Expression<Func<ReactiveComponentBase<T>, T2>>, Expression<Func<ReactiveComponentBase<T>, T3>>, Expression<Func<ReactiveComponentBase<T>, T4>>, Expression<Func<ReactiveComponentBase<T>, T5>>, Expression<Func<ReactiveComponentBase<T>, T6>>, Func<IObservedChange<ReactiveComponentBase<T>, T1>, IObservedChange<ReactiveComponentBase<T>, T2>, IObservedChange<ReactiveComponentBase<T>, T3>, IObservedChange<ReactiveComponentBase<T>, T4>, IObservedChange<ReactiveComponentBase<T>, T5>, IObservedChange<ReactiveComponentBase<T>, 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<ReactiveComponentBase<T>, TRet, T1, T2, T3, T4, T5>(Expression<Func<ReactiveComponentBase<T>, T1>>, Expression<Func<ReactiveComponentBase<T>, T2>>, Expression<Func<ReactiveComponentBase<T>, T3>>, Expression<Func<ReactiveComponentBase<T>, T4>>, Expression<Func<ReactiveComponentBase<T>, T5>>, Func<IObservedChange<ReactiveComponentBase<T>, T1>, IObservedChange<ReactiveComponentBase<T>, T2>, IObservedChange<ReactiveComponentBase<T>, T3>, IObservedChange<ReactiveComponentBase<T>, T4>, IObservedChange<ReactiveComponentBase<T>, 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<ReactiveComponentBase<T>, TRet, T1, T2, T3, T4>(Expression<Func<ReactiveComponentBase<T>, T1>>, Expression<Func<ReactiveComponentBase<T>, T2>>, Expression<Func<ReactiveComponentBase<T>, T3>>, Expression<Func<ReactiveComponentBase<T>, T4>>, Func<IObservedChange<ReactiveComponentBase<T>, T1>, IObservedChange<ReactiveComponentBase<T>, T2>, IObservedChange<ReactiveComponentBase<T>, T3>, IObservedChange<ReactiveComponentBase<T>, 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<ReactiveComponentBase<T>, TRet, T1, T2, T3>(Expression<Func<ReactiveComponentBase<T>, T1>>, Expression<Func<ReactiveComponentBase<T>, T2>>, Expression<Func<ReactiveComponentBase<T>, T3>>, Func<IObservedChange<ReactiveComponentBase<T>, T1>, IObservedChange<ReactiveComponentBase<T>, T2>, IObservedChange<ReactiveComponentBase<T>, 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<ReactiveComponentBase<T>, TRet, T1, T2>(Expression<Func<ReactiveComponentBase<T>, T1>>, Expression<Func<ReactiveComponentBase<T>, T2>>, Func<IObservedChange<ReactiveComponentBase<T>, T1>, IObservedChange<ReactiveComponentBase<T>, 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<ReactiveComponentBase<T>, TRet, T1>(Expression<Func<ReactiveComponentBase<T>, T1>>, Func<IObservedChange<ReactiveComponentBase<T>, 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<ReactiveComponentBase<T>, TRet>(Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Func<IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, 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<ReactiveComponentBase<T>, TRet>(Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Func<IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, 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<ReactiveComponentBase<T>, TRet>(Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Func<IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, 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<ReactiveComponentBase<T>, TRet>(Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Func<IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, 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<ReactiveComponentBase<T>, TRet>(Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Func<IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, 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<ReactiveComponentBase<T>, TRet>(Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Func<IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, 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<ReactiveComponentBase<T>, TRet>(Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Func<IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, 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<ReactiveComponentBase<T>, TRet>(Expression?, Expression?, Expression?, Expression?, Expression?, Func<IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, 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<ReactiveComponentBase<T>, TRet>(Expression?, Expression?, Expression?, Expression?, Func<IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, 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<ReactiveComponentBase<T>, TRet>(Expression?, Expression?, Expression?, Func<IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, 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<ReactiveComponentBase<T>, TRet>(Expression?, Expression?, Func<IObservedChange<ReactiveComponentBase<T>, object>, IObservedChange<ReactiveComponentBase<T>, 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<ReactiveComponentBase<T>, TRet>(Expression?, Func<IObservedChange<ReactiveComponentBase<T>, 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<ReactiveComponentBase<T>, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>(Expression<Func<ReactiveComponentBase<T>, IObservable<T1>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T2>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T3>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T4>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T5>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T6>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T7>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T8>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T9>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T10>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T11>>>, Expression<Func<ReactiveComponentBase<T>, 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<ReactiveComponentBase<T>, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>(Expression<Func<ReactiveComponentBase<T>, IObservable<T1>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T2>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T3>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T4>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T5>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T6>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T7>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T8>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T9>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T10>>>, Expression<Func<ReactiveComponentBase<T>, 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<ReactiveComponentBase<T>, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>(Expression<Func<ReactiveComponentBase<T>, IObservable<T1>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T2>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T3>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T4>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T5>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T6>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T7>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T8>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T9>>>, Expression<Func<ReactiveComponentBase<T>, 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<ReactiveComponentBase<T>, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9>(Expression<Func<ReactiveComponentBase<T>, IObservable<T1>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T2>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T3>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T4>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T5>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T6>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T7>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T8>>>, Expression<Func<ReactiveComponentBase<T>, 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<ReactiveComponentBase<T>, TRet, T1, T2, T3, T4, T5, T6, T7, T8>(Expression<Func<ReactiveComponentBase<T>, IObservable<T1>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T2>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T3>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T4>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T5>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T6>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T7>>>, Expression<Func<ReactiveComponentBase<T>, 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<ReactiveComponentBase<T>, TRet, T1, T2, T3, T4, T5, T6, T7>(Expression<Func<ReactiveComponentBase<T>, IObservable<T1>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T2>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T3>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T4>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T5>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T6>>>, Expression<Func<ReactiveComponentBase<T>, 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<ReactiveComponentBase<T>, TRet, T1, T2, T3, T4, T5, T6>(Expression<Func<ReactiveComponentBase<T>, IObservable<T1>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T2>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T3>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T4>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T5>>>, Expression<Func<ReactiveComponentBase<T>, 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<ReactiveComponentBase<T>, TRet, T1, T2, T3, T4, T5>(Expression<Func<ReactiveComponentBase<T>, IObservable<T1>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T2>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T3>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T4>>>, Expression<Func<ReactiveComponentBase<T>, 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<ReactiveComponentBase<T>, TRet, T1, T2, T3, T4>(Expression<Func<ReactiveComponentBase<T>, IObservable<T1>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T2>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T3>>>, Expression<Func<ReactiveComponentBase<T>, 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<ReactiveComponentBase<T>, TRet, T1, T2, T3>(Expression<Func<ReactiveComponentBase<T>, IObservable<T1>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T2>>>, Expression<Func<ReactiveComponentBase<T>, 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<ReactiveComponentBase<T>, TRet, T1, T2>(Expression<Func<ReactiveComponentBase<T>, IObservable<T1>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<T2>>>, Func<T1, T2, TRet>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveComponentBase<T>, TRet>(Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>) IObservable<TRet>
Observe a observable which is set to a property, and automatically subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveComponentBase<T>, TRet>(Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveComponentBase<T>, TRet>(Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveComponentBase<T>, TRet>(Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveComponentBase<T>, TRet>(Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveComponentBase<T>, TRet>(Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveComponentBase<T>, TRet>(Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveComponentBase<T>, TRet>(Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveComponentBase<T>, TRet>(Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveComponentBase<T>, TRet>(Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveComponentBase<T>, TRet>(Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveComponentBase<T>, TRet>(Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>, Expression<Func<ReactiveComponentBase<T>, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyValue<ReactiveComponentBase<T>, T1, T2, T3, T4, T5, T6, T7>(Expression<Func<ReactiveComponentBase<T>, T1>>, Expression<Func<ReactiveComponentBase<T>, T2>>, Expression<Func<ReactiveComponentBase<T>, T3>>, Expression<Func<ReactiveComponentBase<T>, T4>>, Expression<Func<ReactiveComponentBase<T>, T5>>, Expression<Func<ReactiveComponentBase<T>, T6>>, Expression<Func<ReactiveComponentBase<T>, 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<ReactiveComponentBase<T>, T1, T2, T3, T4, T5, T6>(Expression<Func<ReactiveComponentBase<T>, T1>>, Expression<Func<ReactiveComponentBase<T>, T2>>, Expression<Func<ReactiveComponentBase<T>, T3>>, Expression<Func<ReactiveComponentBase<T>, T4>>, Expression<Func<ReactiveComponentBase<T>, T5>>, Expression<Func<ReactiveComponentBase<T>, 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<ReactiveComponentBase<T>, T1, T2, T3, T4, T5>(Expression<Func<ReactiveComponentBase<T>, T1>>, Expression<Func<ReactiveComponentBase<T>, T2>>, Expression<Func<ReactiveComponentBase<T>, T3>>, Expression<Func<ReactiveComponentBase<T>, T4>>, Expression<Func<ReactiveComponentBase<T>, 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<ReactiveComponentBase<T>, T1, T2, T3, T4>(Expression<Func<ReactiveComponentBase<T>, T1>>, Expression<Func<ReactiveComponentBase<T>, T2>>, Expression<Func<ReactiveComponentBase<T>, T3>>, Expression<Func<ReactiveComponentBase<T>, 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<ReactiveComponentBase<T>, T1, T2, T3>(Expression<Func<ReactiveComponentBase<T>, T1>>, Expression<Func<ReactiveComponentBase<T>, T2>>, Expression<Func<ReactiveComponentBase<T>, 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<ReactiveComponentBase<T>, T1, T2>(Expression<Func<ReactiveComponentBase<T>, T1>>, Expression<Func<ReactiveComponentBase<T>, 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<ReactiveComponentBase<T>, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>(Expression<Func<ReactiveComponentBase<T>, T1>>, Expression<Func<ReactiveComponentBase<T>, T2>>, Expression<Func<ReactiveComponentBase<T>, T3>>, Expression<Func<ReactiveComponentBase<T>, T4>>, Expression<Func<ReactiveComponentBase<T>, T5>>, Expression<Func<ReactiveComponentBase<T>, T6>>, Expression<Func<ReactiveComponentBase<T>, T7>>, Expression<Func<ReactiveComponentBase<T>, T8>>, Expression<Func<ReactiveComponentBase<T>, T9>>, Expression<Func<ReactiveComponentBase<T>, T10>>, Expression<Func<ReactiveComponentBase<T>, T11>>, Expression<Func<ReactiveComponentBase<T>, 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<ReactiveComponentBase<T>, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>(Expression<Func<ReactiveComponentBase<T>, T1>>, Expression<Func<ReactiveComponentBase<T>, T2>>, Expression<Func<ReactiveComponentBase<T>, T3>>, Expression<Func<ReactiveComponentBase<T>, T4>>, Expression<Func<ReactiveComponentBase<T>, T5>>, Expression<Func<ReactiveComponentBase<T>, T6>>, Expression<Func<ReactiveComponentBase<T>, T7>>, Expression<Func<ReactiveComponentBase<T>, T8>>, Expression<Func<ReactiveComponentBase<T>, T9>>, Expression<Func<ReactiveComponentBase<T>, T10>>, Expression<Func<ReactiveComponentBase<T>, 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<ReactiveComponentBase<T>, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>(Expression<Func<ReactiveComponentBase<T>, T1>>, Expression<Func<ReactiveComponentBase<T>, T2>>, Expression<Func<ReactiveComponentBase<T>, T3>>, Expression<Func<ReactiveComponentBase<T>, T4>>, Expression<Func<ReactiveComponentBase<T>, T5>>, Expression<Func<ReactiveComponentBase<T>, T6>>, Expression<Func<ReactiveComponentBase<T>, T7>>, Expression<Func<ReactiveComponentBase<T>, T8>>, Expression<Func<ReactiveComponentBase<T>, T9>>, Expression<Func<ReactiveComponentBase<T>, 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<ReactiveComponentBase<T>, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9>(Expression<Func<ReactiveComponentBase<T>, T1>>, Expression<Func<ReactiveComponentBase<T>, T2>>, Expression<Func<ReactiveComponentBase<T>, T3>>, Expression<Func<ReactiveComponentBase<T>, T4>>, Expression<Func<ReactiveComponentBase<T>, T5>>, Expression<Func<ReactiveComponentBase<T>, T6>>, Expression<Func<ReactiveComponentBase<T>, T7>>, Expression<Func<ReactiveComponentBase<T>, T8>>, Expression<Func<ReactiveComponentBase<T>, 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<ReactiveComponentBase<T>, TRet, T1, T2, T3, T4, T5, T6, T7, T8>(Expression<Func<ReactiveComponentBase<T>, T1>>, Expression<Func<ReactiveComponentBase<T>, T2>>, Expression<Func<ReactiveComponentBase<T>, T3>>, Expression<Func<ReactiveComponentBase<T>, T4>>, Expression<Func<ReactiveComponentBase<T>, T5>>, Expression<Func<ReactiveComponentBase<T>, T6>>, Expression<Func<ReactiveComponentBase<T>, T7>>, Expression<Func<ReactiveComponentBase<T>, 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<ReactiveComponentBase<T>, TRet, T1, T2, T3, T4, T5, T6, T7>(Expression<Func<ReactiveComponentBase<T>, T1>>, Expression<Func<ReactiveComponentBase<T>, T2>>, Expression<Func<ReactiveComponentBase<T>, T3>>, Expression<Func<ReactiveComponentBase<T>, T4>>, Expression<Func<ReactiveComponentBase<T>, T5>>, Expression<Func<ReactiveComponentBase<T>, T6>>, Expression<Func<ReactiveComponentBase<T>, 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<ReactiveComponentBase<T>, TRet, T1, T2, T3, T4, T5, T6>(Expression<Func<ReactiveComponentBase<T>, T1>>, Expression<Func<ReactiveComponentBase<T>, T2>>, Expression<Func<ReactiveComponentBase<T>, T3>>, Expression<Func<ReactiveComponentBase<T>, T4>>, Expression<Func<ReactiveComponentBase<T>, T5>>, Expression<Func<ReactiveComponentBase<T>, 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<ReactiveComponentBase<T>, TRet, T1, T2, T3, T4, T5>(Expression<Func<ReactiveComponentBase<T>, T1>>, Expression<Func<ReactiveComponentBase<T>, T2>>, Expression<Func<ReactiveComponentBase<T>, T3>>, Expression<Func<ReactiveComponentBase<T>, T4>>, Expression<Func<ReactiveComponentBase<T>, 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<ReactiveComponentBase<T>, TRet, T1, T2, T3, T4>(Expression<Func<ReactiveComponentBase<T>, T1>>, Expression<Func<ReactiveComponentBase<T>, T2>>, Expression<Func<ReactiveComponentBase<T>, T3>>, Expression<Func<ReactiveComponentBase<T>, 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<ReactiveComponentBase<T>, TRet, T1, T2, T3>(Expression<Func<ReactiveComponentBase<T>, T1>>, Expression<Func<ReactiveComponentBase<T>, T2>>, Expression<Func<ReactiveComponentBase<T>, 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<ReactiveComponentBase<T>, TRet, T1, T2>(Expression<Func<ReactiveComponentBase<T>, T1>>, Expression<Func<ReactiveComponentBase<T>, 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<ReactiveComponentBase<T>, TRet, T1>(Expression<Func<ReactiveComponentBase<T>, 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<ReactiveComponentBase<T>, TRet>(Expression<Func<ReactiveComponentBase<T>, 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<ReactiveComponentBase<T>, TKey, TField>(Dictionary<TKey, TField>, IDictionary<TKey, TField>) TBuilder
Adds the specified dictionary to the provided dictionary.