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

ReactiveViewController Class

Summary

This is a View that is both a NSViewController and has ReactiveObject powers (i.e. you can call RaiseAndSetIfChanged).
Namespace
ReactiveUI
Interfaces
Base Types
  • NSViewController
Derived Types
graph BT Type-->Base0["NSViewController"] Type-.->Interface0["IReactiveNotifyPropertyChanged<ReactiveViewController>"] 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["ReactiveViewController"] class Type type-node Derived0["ReactiveViewController<TViewModel>"]-->Type click Derived0 "/api/ReactiveUI/ReactiveViewController_1"

Syntax

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

Attributes

Type Description
SuppressMessage

Constructors

Name Summary
ReactiveViewController() Initializes a new instance of the ReactiveViewController class.
ReactiveViewController(IntPtr) Initializes a new instance of the ReactiveViewController class.
ReactiveViewController(NSCoder) Initializes a new instance of the ReactiveViewController class.
ReactiveViewController(NSObjectFlag) Initializes a new instance of the ReactiveViewController class.
ReactiveViewController(string, NSBundle) Initializes a new instance of the ReactiveViewController class.

Events

Name Type Summary
PropertyChanged PropertyChangedEventHandler?
PropertyChanging PropertyChangingEventHandler?

Properties

Name Value Summary
Activated IObservable<Unit>
Gets a observable which is triggered when the ViewModel is activated.
Changed IObservable<IReactivePropertyChangedEventArgs<ReactiveViewController>>
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<ReactiveViewController>>
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 which is triggered when the ViewModel 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.
ViewDidDisappear() void
ViewWillAppear() void

Extension Methods

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