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

ReactiveControl Class

Summary

This is a UIControl that is both and UIControl and has a ReactiveObject powers (i.e. you can call RaiseAndSetIfChanged).
Namespace
ReactiveUI
Interfaces
Base Types
  • AppKit.NSControl
Derived Types
graph BT Type-->Base0["AppKit.NSControl"] Type-.->Interface0["IReactiveNotifyPropertyChanged<ReactiveControl>"] Type-.->Interface1["IHandleObservableErrors"] click Interface1 "/api/ReactiveUI/IHandleObservableErrors" Type-.->Interface2["IReactiveObject"] click Interface2 "/api/ReactiveUI/IReactiveObject" Type-.->Interface3["INotifyPropertyChanged"] Type-.->Interface4["INotifyPropertyChanging"] Type-.->Interface5["IEnableLogger"] Type-.->Interface6["ICanActivate"] click Interface6 "/api/ReactiveUI/ICanActivate" Type-.->Interface7["ICanForceManualActivation"] Type["ReactiveControl"] class Type type-node Derived0["ReactiveControl<TViewModel>"]-->Type click Derived0 "/api/ReactiveUI/ReactiveControl_1"

Syntax

[SuppressMessage("Design", "CA1010: Implement generic IEnumerable", Justification = "UI Kit exposes IEnumerable")]
public class ReactiveControl : AppKit.NSControl, IReactiveNotifyPropertyChanged<ReactiveControl>, 
    IHandleObservableErrors, IReactiveObject, INotifyPropertyChanged, INotifyPropertyChanging, 
    IEnableLogger, ICanActivate, ICanForceManualActivation

Attributes

Type Description
SuppressMessageAttribute

Constructors

Name Summary
ReactiveControl() Initializes a new instance of the ReactiveControl class.
ReactiveControl(CGRect) Initializes a new instance of the ReactiveControl class.
ReactiveControl(IntPtr) Initializes a new instance of the ReactiveControl class.
ReactiveControl(NSCoder) Initializes a new instance of the ReactiveControl class.
ReactiveControl(NSObjectFlag) Initializes a new instance of the ReactiveControl class.

Events

Name Type Summary
PropertyChanged PropertyChangedEventHandler?
PropertyChanging PropertyChangingEventHandler?

Properties

Name Value Summary
Activated IObservable<Unit>
Gets a observable when the control is activated.
Changed IObservable<IReactivePropertyChangedEventArgs<ReactiveControl>>
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<ReactiveControl>>
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.
Deactivated IObservable<Unit>
Gets a observable that occurs when the control is deactivated.
ThrownExceptions IObservable<Exception>
Gets a observable which will fire whenever an exception would normally terminate ReactiveUI internal state.

Methods

Name Value Summary
Dispose(bool) void
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.
ViewWillMoveToSuperview(NSView?) void

Extension Methods

Name Value Summary
AutoPersist<ReactiveControl, TDontCare>(Func<ReactiveControl, 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<ReactiveControl>(Func<ReactiveControl, 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.
BindCommand<ReactiveControl, TViewModel, TProp, TControl, TParam>(TViewModel, Expression<Func<TViewModel, TProp>>, Expression<Func<ReactiveControl, TControl>>, Expression<Func<TViewModel, TParam>>, string) IReactiveBinding<TView, TProp>
Bind a command from the ViewModel to an explicitly specified control on the View.
BindCommand<ReactiveControl, TViewModel, TProp, TControl, TParam>(TViewModel, Expression<Func<TViewModel, TProp>>, Expression<Func<ReactiveControl, TControl>>, IObservable<TParam>, string) IReactiveBinding<TView, TProp>
Bind a command from the ViewModel to an explicitly specified control on the View.
BindCommand<ReactiveControl, TViewModel, TProp, TControl>(TViewModel, Expression<Func<TViewModel, TProp>>, Expression<Func<ReactiveControl, TControl>>, string) IReactiveBinding<TView, TProp>
Bind a command from the ViewModel to an explicitly specified control on the View.
BindValidation<ReactiveControl, TViewModel, TViewModelProperty, TViewProperty>(TViewModel, Expression<Func<TViewModel, TViewModelProperty>>, Expression<Func<ReactiveControl, TViewProperty>>, IValidationTextFormatter<string>) IDisposable
Binds the specified ViewModel property validation to the View property.
BindValidation<ReactiveControl, TViewModel, TViewModelProperty>(TViewModel, Expression<Func<TViewModel, TViewModelProperty>>, TextInputLayout, IValidationTextFormatter<string>) IDisposable
Platform binding to the TextInputLayout.
BindValidation<ReactiveControl, TViewModel, TViewModelProperty>(TViewModel, Expression<Func<TViewModel, TViewModelProperty>>, TextInputLayout, IValidationTextFormatter<string>) IDisposable
Platform binding to the TextInputLayout.
BindValidation<ReactiveControl, TViewModel, TViewProperty>(TViewModel, Expression<Func<ReactiveControl, TViewProperty>>, IValidationTextFormatter<string>) IDisposable
Binds the overall validation of a ViewModel to a specified View property.
BindValidation<ReactiveControl, TViewModel, TViewProperty>(TViewModel, Expression<Func<TViewModel, ValidationHelper>>, Expression<Func<ReactiveControl, TViewProperty>>, IValidationTextFormatter<string>) IDisposable
Binds a ValidationHelper from a ViewModel to a specified View property.
BindValidation<ReactiveControl, TViewModel>(TViewModel, Expression<Func<TViewModel, ValidationHelper>>, TextInputLayout, IValidationTextFormatter<string>) IDisposable
Platform binding to the TextInputLayout.
BindValidation<ReactiveControl, TViewModel>(TViewModel, Expression<Func<TViewModel, ValidationHelper>>, TextInputLayout, IValidationTextFormatter<string>) IDisposable
Platform binding to the TextInputLayout.
BindValidationEx<ReactiveControl, TViewModel, TViewModelProperty>(TViewModel, Expression<Func<TViewModel, TViewModelProperty>>, TextInputLayout, IValidationTextFormatter<string>) IDisposable
Platform binding to the TextInputLayout.
BindValidationEx<ReactiveControl, 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.
RaiseAndSetIfChanged<ReactiveControl, 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<ReactiveControl>(string) void
Use this method in your ReactiveObject classes when creating custom properties where raiseAndSetIfChanged doesn't suffice.
RaisePropertyChanging<ReactiveControl>(string) void
Use this method in your ReactiveObject classes when creating custom properties where raiseAndSetIfChanged doesn't suffice.
SubscribePropertyChangedEvents<ReactiveControl>() void
Use this method for enabling classic PropertyChanged events when you are implementing IReactiveObject manually.
SubscribePropertyChangingEvents<ReactiveControl>() void
Use this method for enabling classic PropertyChanging events when you are implementing IReactiveObject manually.
WhenAny<ReactiveControl, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>(Expression<Func<ReactiveControl, T1>>, Expression<Func<ReactiveControl, T2>>, Expression<Func<ReactiveControl, T3>>, Expression<Func<ReactiveControl, T4>>, Expression<Func<ReactiveControl, T5>>, Expression<Func<ReactiveControl, T6>>, Expression<Func<ReactiveControl, T7>>, Expression<Func<ReactiveControl, T8>>, Expression<Func<ReactiveControl, T9>>, Expression<Func<ReactiveControl, T10>>, Expression<Func<ReactiveControl, T11>>, Expression<Func<ReactiveControl, T12>>, Func<IObservedChange<ReactiveControl, T1>, IObservedChange<ReactiveControl, T2>, IObservedChange<ReactiveControl, T3>, IObservedChange<ReactiveControl, T4>, IObservedChange<ReactiveControl, T5>, IObservedChange<ReactiveControl, T6>, IObservedChange<ReactiveControl, T7>, IObservedChange<ReactiveControl, T8>, IObservedChange<ReactiveControl, T9>, IObservedChange<ReactiveControl, T10>, IObservedChange<ReactiveControl, T11>, IObservedChange<ReactiveControl, 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<ReactiveControl, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>(Expression<Func<ReactiveControl, T1>>, Expression<Func<ReactiveControl, T2>>, Expression<Func<ReactiveControl, T3>>, Expression<Func<ReactiveControl, T4>>, Expression<Func<ReactiveControl, T5>>, Expression<Func<ReactiveControl, T6>>, Expression<Func<ReactiveControl, T7>>, Expression<Func<ReactiveControl, T8>>, Expression<Func<ReactiveControl, T9>>, Expression<Func<ReactiveControl, T10>>, Expression<Func<ReactiveControl, T11>>, Func<IObservedChange<ReactiveControl, T1>, IObservedChange<ReactiveControl, T2>, IObservedChange<ReactiveControl, T3>, IObservedChange<ReactiveControl, T4>, IObservedChange<ReactiveControl, T5>, IObservedChange<ReactiveControl, T6>, IObservedChange<ReactiveControl, T7>, IObservedChange<ReactiveControl, T8>, IObservedChange<ReactiveControl, T9>, IObservedChange<ReactiveControl, T10>, IObservedChange<ReactiveControl, 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<ReactiveControl, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>(Expression<Func<ReactiveControl, T1>>, Expression<Func<ReactiveControl, T2>>, Expression<Func<ReactiveControl, T3>>, Expression<Func<ReactiveControl, T4>>, Expression<Func<ReactiveControl, T5>>, Expression<Func<ReactiveControl, T6>>, Expression<Func<ReactiveControl, T7>>, Expression<Func<ReactiveControl, T8>>, Expression<Func<ReactiveControl, T9>>, Expression<Func<ReactiveControl, T10>>, Func<IObservedChange<ReactiveControl, T1>, IObservedChange<ReactiveControl, T2>, IObservedChange<ReactiveControl, T3>, IObservedChange<ReactiveControl, T4>, IObservedChange<ReactiveControl, T5>, IObservedChange<ReactiveControl, T6>, IObservedChange<ReactiveControl, T7>, IObservedChange<ReactiveControl, T8>, IObservedChange<ReactiveControl, T9>, IObservedChange<ReactiveControl, 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<ReactiveControl, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9>(Expression<Func<ReactiveControl, T1>>, Expression<Func<ReactiveControl, T2>>, Expression<Func<ReactiveControl, T3>>, Expression<Func<ReactiveControl, T4>>, Expression<Func<ReactiveControl, T5>>, Expression<Func<ReactiveControl, T6>>, Expression<Func<ReactiveControl, T7>>, Expression<Func<ReactiveControl, T8>>, Expression<Func<ReactiveControl, T9>>, Func<IObservedChange<ReactiveControl, T1>, IObservedChange<ReactiveControl, T2>, IObservedChange<ReactiveControl, T3>, IObservedChange<ReactiveControl, T4>, IObservedChange<ReactiveControl, T5>, IObservedChange<ReactiveControl, T6>, IObservedChange<ReactiveControl, T7>, IObservedChange<ReactiveControl, T8>, IObservedChange<ReactiveControl, 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<ReactiveControl, TRet, T1, T2, T3, T4, T5, T6, T7, T8>(Expression<Func<ReactiveControl, T1>>, Expression<Func<ReactiveControl, T2>>, Expression<Func<ReactiveControl, T3>>, Expression<Func<ReactiveControl, T4>>, Expression<Func<ReactiveControl, T5>>, Expression<Func<ReactiveControl, T6>>, Expression<Func<ReactiveControl, T7>>, Expression<Func<ReactiveControl, T8>>, Func<IObservedChange<ReactiveControl, T1>, IObservedChange<ReactiveControl, T2>, IObservedChange<ReactiveControl, T3>, IObservedChange<ReactiveControl, T4>, IObservedChange<ReactiveControl, T5>, IObservedChange<ReactiveControl, T6>, IObservedChange<ReactiveControl, T7>, IObservedChange<ReactiveControl, 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<ReactiveControl, TRet, T1, T2, T3, T4, T5, T6, T7>(Expression<Func<ReactiveControl, T1>>, Expression<Func<ReactiveControl, T2>>, Expression<Func<ReactiveControl, T3>>, Expression<Func<ReactiveControl, T4>>, Expression<Func<ReactiveControl, T5>>, Expression<Func<ReactiveControl, T6>>, Expression<Func<ReactiveControl, T7>>, Func<IObservedChange<ReactiveControl, T1>, IObservedChange<ReactiveControl, T2>, IObservedChange<ReactiveControl, T3>, IObservedChange<ReactiveControl, T4>, IObservedChange<ReactiveControl, T5>, IObservedChange<ReactiveControl, T6>, IObservedChange<ReactiveControl, 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<ReactiveControl, TRet, T1, T2, T3, T4, T5, T6>(Expression<Func<ReactiveControl, T1>>, Expression<Func<ReactiveControl, T2>>, Expression<Func<ReactiveControl, T3>>, Expression<Func<ReactiveControl, T4>>, Expression<Func<ReactiveControl, T5>>, Expression<Func<ReactiveControl, T6>>, Func<IObservedChange<ReactiveControl, T1>, IObservedChange<ReactiveControl, T2>, IObservedChange<ReactiveControl, T3>, IObservedChange<ReactiveControl, T4>, IObservedChange<ReactiveControl, T5>, IObservedChange<ReactiveControl, 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<ReactiveControl, TRet, T1, T2, T3, T4, T5>(Expression<Func<ReactiveControl, T1>>, Expression<Func<ReactiveControl, T2>>, Expression<Func<ReactiveControl, T3>>, Expression<Func<ReactiveControl, T4>>, Expression<Func<ReactiveControl, T5>>, Func<IObservedChange<ReactiveControl, T1>, IObservedChange<ReactiveControl, T2>, IObservedChange<ReactiveControl, T3>, IObservedChange<ReactiveControl, T4>, IObservedChange<ReactiveControl, 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<ReactiveControl, TRet, T1, T2, T3, T4>(Expression<Func<ReactiveControl, T1>>, Expression<Func<ReactiveControl, T2>>, Expression<Func<ReactiveControl, T3>>, Expression<Func<ReactiveControl, T4>>, Func<IObservedChange<ReactiveControl, T1>, IObservedChange<ReactiveControl, T2>, IObservedChange<ReactiveControl, T3>, IObservedChange<ReactiveControl, 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<ReactiveControl, TRet, T1, T2, T3>(Expression<Func<ReactiveControl, T1>>, Expression<Func<ReactiveControl, T2>>, Expression<Func<ReactiveControl, T3>>, Func<IObservedChange<ReactiveControl, T1>, IObservedChange<ReactiveControl, T2>, IObservedChange<ReactiveControl, 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<ReactiveControl, TRet, T1, T2>(Expression<Func<ReactiveControl, T1>>, Expression<Func<ReactiveControl, T2>>, Func<IObservedChange<ReactiveControl, T1>, IObservedChange<ReactiveControl, 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<ReactiveControl, TRet, T1>(Expression<Func<ReactiveControl, T1>>, Func<IObservedChange<ReactiveControl, 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<ReactiveControl, TRet>(Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Func<IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, 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<ReactiveControl, TRet>(Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Func<IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, 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<ReactiveControl, TRet>(Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Func<IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, 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<ReactiveControl, TRet>(Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Func<IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, 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<ReactiveControl, TRet>(Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Func<IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, 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<ReactiveControl, TRet>(Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Func<IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, 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<ReactiveControl, TRet>(Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Func<IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, 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<ReactiveControl, TRet>(Expression?, Expression?, Expression?, Expression?, Expression?, Func<IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, 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<ReactiveControl, TRet>(Expression?, Expression?, Expression?, Expression?, Func<IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, 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<ReactiveControl, TRet>(Expression?, Expression?, Expression?, Func<IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, 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<ReactiveControl, TRet>(Expression?, Expression?, Func<IObservedChange<ReactiveControl, object>, IObservedChange<ReactiveControl, 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<ReactiveControl, TRet>(Expression?, Func<IObservedChange<ReactiveControl, 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<ReactiveControl, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>(Expression<Func<ReactiveControl, IObservable<T1>>>, Expression<Func<ReactiveControl, IObservable<T2>>>, Expression<Func<ReactiveControl, IObservable<T3>>>, Expression<Func<ReactiveControl, IObservable<T4>>>, Expression<Func<ReactiveControl, IObservable<T5>>>, Expression<Func<ReactiveControl, IObservable<T6>>>, Expression<Func<ReactiveControl, IObservable<T7>>>, Expression<Func<ReactiveControl, IObservable<T8>>>, Expression<Func<ReactiveControl, IObservable<T9>>>, Expression<Func<ReactiveControl, IObservable<T10>>>, Expression<Func<ReactiveControl, IObservable<T11>>>, Expression<Func<ReactiveControl, 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<ReactiveControl, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>(Expression<Func<ReactiveControl, IObservable<T1>>>, Expression<Func<ReactiveControl, IObservable<T2>>>, Expression<Func<ReactiveControl, IObservable<T3>>>, Expression<Func<ReactiveControl, IObservable<T4>>>, Expression<Func<ReactiveControl, IObservable<T5>>>, Expression<Func<ReactiveControl, IObservable<T6>>>, Expression<Func<ReactiveControl, IObservable<T7>>>, Expression<Func<ReactiveControl, IObservable<T8>>>, Expression<Func<ReactiveControl, IObservable<T9>>>, Expression<Func<ReactiveControl, IObservable<T10>>>, Expression<Func<ReactiveControl, 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<ReactiveControl, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>(Expression<Func<ReactiveControl, IObservable<T1>>>, Expression<Func<ReactiveControl, IObservable<T2>>>, Expression<Func<ReactiveControl, IObservable<T3>>>, Expression<Func<ReactiveControl, IObservable<T4>>>, Expression<Func<ReactiveControl, IObservable<T5>>>, Expression<Func<ReactiveControl, IObservable<T6>>>, Expression<Func<ReactiveControl, IObservable<T7>>>, Expression<Func<ReactiveControl, IObservable<T8>>>, Expression<Func<ReactiveControl, IObservable<T9>>>, Expression<Func<ReactiveControl, 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<ReactiveControl, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9>(Expression<Func<ReactiveControl, IObservable<T1>>>, Expression<Func<ReactiveControl, IObservable<T2>>>, Expression<Func<ReactiveControl, IObservable<T3>>>, Expression<Func<ReactiveControl, IObservable<T4>>>, Expression<Func<ReactiveControl, IObservable<T5>>>, Expression<Func<ReactiveControl, IObservable<T6>>>, Expression<Func<ReactiveControl, IObservable<T7>>>, Expression<Func<ReactiveControl, IObservable<T8>>>, Expression<Func<ReactiveControl, 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<ReactiveControl, TRet, T1, T2, T3, T4, T5, T6, T7, T8>(Expression<Func<ReactiveControl, IObservable<T1>>>, Expression<Func<ReactiveControl, IObservable<T2>>>, Expression<Func<ReactiveControl, IObservable<T3>>>, Expression<Func<ReactiveControl, IObservable<T4>>>, Expression<Func<ReactiveControl, IObservable<T5>>>, Expression<Func<ReactiveControl, IObservable<T6>>>, Expression<Func<ReactiveControl, IObservable<T7>>>, Expression<Func<ReactiveControl, 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<ReactiveControl, TRet, T1, T2, T3, T4, T5, T6, T7>(Expression<Func<ReactiveControl, IObservable<T1>>>, Expression<Func<ReactiveControl, IObservable<T2>>>, Expression<Func<ReactiveControl, IObservable<T3>>>, Expression<Func<ReactiveControl, IObservable<T4>>>, Expression<Func<ReactiveControl, IObservable<T5>>>, Expression<Func<ReactiveControl, IObservable<T6>>>, Expression<Func<ReactiveControl, 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<ReactiveControl, TRet, T1, T2, T3, T4, T5, T6>(Expression<Func<ReactiveControl, IObservable<T1>>>, Expression<Func<ReactiveControl, IObservable<T2>>>, Expression<Func<ReactiveControl, IObservable<T3>>>, Expression<Func<ReactiveControl, IObservable<T4>>>, Expression<Func<ReactiveControl, IObservable<T5>>>, Expression<Func<ReactiveControl, 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<ReactiveControl, TRet, T1, T2, T3, T4, T5>(Expression<Func<ReactiveControl, IObservable<T1>>>, Expression<Func<ReactiveControl, IObservable<T2>>>, Expression<Func<ReactiveControl, IObservable<T3>>>, Expression<Func<ReactiveControl, IObservable<T4>>>, Expression<Func<ReactiveControl, 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<ReactiveControl, TRet, T1, T2, T3, T4>(Expression<Func<ReactiveControl, IObservable<T1>>>, Expression<Func<ReactiveControl, IObservable<T2>>>, Expression<Func<ReactiveControl, IObservable<T3>>>, Expression<Func<ReactiveControl, 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<ReactiveControl, TRet, T1, T2, T3>(Expression<Func<ReactiveControl, IObservable<T1>>>, Expression<Func<ReactiveControl, IObservable<T2>>>, Expression<Func<ReactiveControl, 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<ReactiveControl, TRet, T1, T2>(Expression<Func<ReactiveControl, IObservable<T1>>>, Expression<Func<ReactiveControl, IObservable<T2>>>, Func<T1, T2, TRet>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveControl, TRet>(Expression<Func<ReactiveControl, IObservable<TRet>>>) IObservable<TRet>
Observe a observable which is set to a property, and automatically subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveControl, TRet>(Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveControl, TRet>(Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveControl, TRet>(Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveControl, TRet>(Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveControl, TRet>(Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveControl, TRet>(Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveControl, TRet>(Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveControl, TRet>(Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveControl, TRet>(Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveControl, TRet>(Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveControl, TRet>(Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>, Expression<Func<ReactiveControl, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyValue<ReactiveControl, T1, T2, T3, T4, T5, T6, T7>(Expression<Func<ReactiveControl, T1>>, Expression<Func<ReactiveControl, T2>>, Expression<Func<ReactiveControl, T3>>, Expression<Func<ReactiveControl, T4>>, Expression<Func<ReactiveControl, T5>>, Expression<Func<ReactiveControl, T6>>, Expression<Func<ReactiveControl, 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<ReactiveControl, T1, T2, T3, T4, T5, T6>(Expression<Func<ReactiveControl, T1>>, Expression<Func<ReactiveControl, T2>>, Expression<Func<ReactiveControl, T3>>, Expression<Func<ReactiveControl, T4>>, Expression<Func<ReactiveControl, T5>>, Expression<Func<ReactiveControl, 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<ReactiveControl, T1, T2, T3, T4, T5>(Expression<Func<ReactiveControl, T1>>, Expression<Func<ReactiveControl, T2>>, Expression<Func<ReactiveControl, T3>>, Expression<Func<ReactiveControl, T4>>, Expression<Func<ReactiveControl, 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<ReactiveControl, T1, T2, T3, T4>(Expression<Func<ReactiveControl, T1>>, Expression<Func<ReactiveControl, T2>>, Expression<Func<ReactiveControl, T3>>, Expression<Func<ReactiveControl, 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<ReactiveControl, T1, T2, T3>(Expression<Func<ReactiveControl, T1>>, Expression<Func<ReactiveControl, T2>>, Expression<Func<ReactiveControl, 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<ReactiveControl, T1, T2>(Expression<Func<ReactiveControl, T1>>, Expression<Func<ReactiveControl, 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<ReactiveControl, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>(Expression<Func<ReactiveControl, T1>>, Expression<Func<ReactiveControl, T2>>, Expression<Func<ReactiveControl, T3>>, Expression<Func<ReactiveControl, T4>>, Expression<Func<ReactiveControl, T5>>, Expression<Func<ReactiveControl, T6>>, Expression<Func<ReactiveControl, T7>>, Expression<Func<ReactiveControl, T8>>, Expression<Func<ReactiveControl, T9>>, Expression<Func<ReactiveControl, T10>>, Expression<Func<ReactiveControl, T11>>, Expression<Func<ReactiveControl, 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<ReactiveControl, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>(Expression<Func<ReactiveControl, T1>>, Expression<Func<ReactiveControl, T2>>, Expression<Func<ReactiveControl, T3>>, Expression<Func<ReactiveControl, T4>>, Expression<Func<ReactiveControl, T5>>, Expression<Func<ReactiveControl, T6>>, Expression<Func<ReactiveControl, T7>>, Expression<Func<ReactiveControl, T8>>, Expression<Func<ReactiveControl, T9>>, Expression<Func<ReactiveControl, T10>>, Expression<Func<ReactiveControl, 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<ReactiveControl, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>(Expression<Func<ReactiveControl, T1>>, Expression<Func<ReactiveControl, T2>>, Expression<Func<ReactiveControl, T3>>, Expression<Func<ReactiveControl, T4>>, Expression<Func<ReactiveControl, T5>>, Expression<Func<ReactiveControl, T6>>, Expression<Func<ReactiveControl, T7>>, Expression<Func<ReactiveControl, T8>>, Expression<Func<ReactiveControl, T9>>, Expression<Func<ReactiveControl, 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<ReactiveControl, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9>(Expression<Func<ReactiveControl, T1>>, Expression<Func<ReactiveControl, T2>>, Expression<Func<ReactiveControl, T3>>, Expression<Func<ReactiveControl, T4>>, Expression<Func<ReactiveControl, T5>>, Expression<Func<ReactiveControl, T6>>, Expression<Func<ReactiveControl, T7>>, Expression<Func<ReactiveControl, T8>>, Expression<Func<ReactiveControl, 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<ReactiveControl, TRet, T1, T2, T3, T4, T5, T6, T7, T8>(Expression<Func<ReactiveControl, T1>>, Expression<Func<ReactiveControl, T2>>, Expression<Func<ReactiveControl, T3>>, Expression<Func<ReactiveControl, T4>>, Expression<Func<ReactiveControl, T5>>, Expression<Func<ReactiveControl, T6>>, Expression<Func<ReactiveControl, T7>>, Expression<Func<ReactiveControl, 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<ReactiveControl, TRet, T1, T2, T3, T4, T5, T6, T7>(Expression<Func<ReactiveControl, T1>>, Expression<Func<ReactiveControl, T2>>, Expression<Func<ReactiveControl, T3>>, Expression<Func<ReactiveControl, T4>>, Expression<Func<ReactiveControl, T5>>, Expression<Func<ReactiveControl, T6>>, Expression<Func<ReactiveControl, 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<ReactiveControl, TRet, T1, T2, T3, T4, T5, T6>(Expression<Func<ReactiveControl, T1>>, Expression<Func<ReactiveControl, T2>>, Expression<Func<ReactiveControl, T3>>, Expression<Func<ReactiveControl, T4>>, Expression<Func<ReactiveControl, T5>>, Expression<Func<ReactiveControl, 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<ReactiveControl, TRet, T1, T2, T3, T4, T5>(Expression<Func<ReactiveControl, T1>>, Expression<Func<ReactiveControl, T2>>, Expression<Func<ReactiveControl, T3>>, Expression<Func<ReactiveControl, T4>>, Expression<Func<ReactiveControl, 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<ReactiveControl, TRet, T1, T2, T3, T4>(Expression<Func<ReactiveControl, T1>>, Expression<Func<ReactiveControl, T2>>, Expression<Func<ReactiveControl, T3>>, Expression<Func<ReactiveControl, 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<ReactiveControl, TRet, T1, T2, T3>(Expression<Func<ReactiveControl, T1>>, Expression<Func<ReactiveControl, T2>>, Expression<Func<ReactiveControl, 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<ReactiveControl, TRet, T1, T2>(Expression<Func<ReactiveControl, T1>>, Expression<Func<ReactiveControl, 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<ReactiveControl, TRet, T1>(Expression<Func<ReactiveControl, 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<ReactiveControl, TRet>(Expression<Func<ReactiveControl, 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<ReactiveControl, TKey, TField>(Dictionary<TKey, TField>, IDictionary<TKey, TField>) TBuilder
Adds the specified dictionary to the provided dictionary.