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

ReactiveDependencyAttribute Class

Summary

Attribute that marks a property as a Reactive Dependency.
Namespace
ReactiveUI.Fody.Helpers
Base Types
  • object
  • Attribute
graph BT Type-->Base0["Attribute"] Base0-->Base1["object"] Type["ReactiveDependencyAttribute"] class Type type-node

Syntax

[AttributeUsage(AttributeTargets.Property)]
public sealed class ReactiveDependencyAttribute : Attribute

Attributes

Type Description
AttributeUsageAttribute

Constructors

Name Summary
ReactiveDependencyAttribute(string) Initializes a new instance of the ReactiveDependencyAttribute class.

Properties

Name Value Summary
Target string
Gets the name of the backing property.
TargetProperty string
Gets or sets the target property on the backing property.

Extension Methods

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

See Also

  • System.Attribute