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

ReactiveCollectionViewCell<TViewModel> Class

Summary

This is a UICollectionViewCell that is both an UICollectionViewCell and has ReactiveObject powers (i.e. you can call RaiseAndSetIfChanged).
Namespace
ReactiveUI
Interfaces
Base Types
graph BT Type-->Base0["ReactiveCollectionViewCell"] click Base0 "/api/ReactiveUI/ReactiveCollectionViewCell" Base0-->Base1["UICollectionViewCell"] Type-.->Interface0["IReactiveNotifyPropertyChanged<ReactiveCollectionViewCell>"] 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["IViewFor<TViewModel>"] Type-.->Interface8["IViewFor"] click Interface8 "/api/ReactiveUI/IViewFor" Type-.->Interface9["IActivatableView"] click Interface9 "/api/ReactiveUI/IActivatableView" Type["ReactiveCollectionViewCell<TViewModel>"] class Type type-node

Syntax

[SuppressMessage("Design", "CA1010: Implement generic IEnumerable", Justification = "UI Kit exposes IEnumerable")]
[SuppressMessage("StyleCop.CSharp.MaintainabilityRules", "SA1402:FileMayOnlyContainASingleType", Justification = "Classes with the same class names within.")]
public abstract class ReactiveCollectionViewCell<TViewModel> : ReactiveCollectionViewCell, 
    IReactiveNotifyPropertyChanged<ReactiveCollectionViewCell>, IHandleObservableErrors, 
    IReactiveObject, INotifyPropertyChanged, INotifyPropertyChanging, IEnableLogger, ICanActivate, 
    IViewFor<TViewModel>, IViewFor, IActivatableView
    where TViewModel : class

Attributes

Type Description
SuppressMessageAttribute
SuppressMessageAttribute

Type Parameters

Name Description
TViewModel The view model type.

Constructors

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<ReactiveCollectionViewCell>>
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<ReactiveCollectionViewCell>>
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.
ViewModel TViewModel
Gets or sets the ViewModel corresponding to this specific View. This should be a DependencyProperty if you're using XAML.

Methods

Name Value Summary
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.
WillMoveToSuperview(UIView?) void

Extension Methods

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