BindCommand<ReactiveCommand<TParam, TResult>, TViewModel, TProp, TControl, TParam>(TViewModel, Expression<Func<TViewModel, TProp>>, Expression<Func<ReactiveCommand<TParam, TResult>, TControl>>, Expression<Func<TViewModel, TParam>>, string?) |
IReactiveBinding<TView, TProp> |
Bind a command from the ViewModel to an explicitly specified control
on the View.
|
BindCommand<ReactiveCommand<TParam, TResult>, TViewModel, TProp, TControl, TParam>(TViewModel, Expression<Func<TViewModel, TProp>>, Expression<Func<ReactiveCommand<TParam, TResult>, TControl>>, IObservable<TParam>, string?) |
IReactiveBinding<TView, TProp> |
Bind a command from the ViewModel to an explicitly specified control
on the View.
|
BindCommand<ReactiveCommand<TParam, TResult>, TViewModel, TProp, TControl>(TViewModel, Expression<Func<TViewModel, TProp>>, Expression<Func<ReactiveCommand<TParam, TResult>, TControl>>, string?) |
IReactiveBinding<TView, TProp> |
Bind a command from the ViewModel to an explicitly specified control
on the View.
|
BindTo<TResult, TTarget, TTValue>(TTarget, Expression<Func<TTarget, TTValue>>, object?, IBindingTypeConverter?) |
IDisposable |
BindTo takes an Observable stream and applies it to a target
property. Conceptually it is similar to Subscribe(x =>
target.property = x) , but allows you to use child properties
without the null checks.
|
BindValidation<ReactiveCommand<TParam, TResult>, TViewModel, TViewModelProperty, TViewProperty>(TViewModel?, Expression<Func<TViewModel, TViewModelProperty>>, Expression<Func<ReactiveCommand<TParam, TResult>, TViewProperty>>, IValidationTextFormatter<string>?) |
IDisposable |
Binds the specified ViewModel property validation to the View property.
|
BindValidation<ReactiveCommand<TParam, TResult>, TViewModel, TViewModelProperty>(TViewModel?, Expression<Func<TViewModel, TViewModelProperty>>, TextInputLayout, IValidationTextFormatter<string>?) |
IDisposable |
Platform binding to the TextInputLayout.
|
BindValidation<ReactiveCommand<TParam, TResult>, TViewModel, TViewModelProperty>(TViewModel?, Expression<Func<TViewModel, TViewModelProperty>>, TextInputLayout, IValidationTextFormatter<string>?) |
IDisposable |
Platform binding to the TextInputLayout.
|
BindValidation<ReactiveCommand<TParam, TResult>, TViewModel, TViewProperty>(TViewModel?, Expression<Func<ReactiveCommand<TParam, TResult>, TViewProperty>>, IValidationTextFormatter<string>?) |
IDisposable |
Binds the overall validation of a ViewModel to a specified View property.
|
BindValidation<ReactiveCommand<TParam, TResult>, TViewModel, TViewProperty>(TViewModel?, Expression<Func<TViewModel?, ValidationHelper>>, Expression<Func<ReactiveCommand<TParam, TResult>, TViewProperty>>, IValidationTextFormatter<string>?) |
IDisposable |
|
BindValidation<ReactiveCommand<TParam, TResult>, TViewModel>(TViewModel?, Expression<Func<TViewModel?, ValidationHelper>>, TextInputLayout, IValidationTextFormatter<string>?) |
IDisposable |
Platform binding to the TextInputLayout.
|
BindValidation<ReactiveCommand<TParam, TResult>, TViewModel>(TViewModel?, Expression<Func<TViewModel?, ValidationHelper>>, TextInputLayout, IValidationTextFormatter<string>?) |
IDisposable |
Platform binding to the TextInputLayout.
|
BindValidationEx<ReactiveCommand<TParam, TResult>, TViewModel, TViewModelProperty>(TViewModel?, Expression<Func<TViewModel, TViewModelProperty>>, TextInputLayout, IValidationTextFormatter<string>?) |
IDisposable |
Platform binding to the TextInputLayout.
|
BindValidationEx<ReactiveCommand<TParam, TResult>, TViewModel, TViewModelProperty>(TViewModel?, Expression<Func<TViewModel, TViewModelProperty>>, TextInputLayout, IValidationTextFormatter<string>?) |
IDisposable |
Platform binding to the TextInputLayout.
|
DisposeWith<ReactiveCommand<TParam, TResult>>(CompositeDisposable) |
T |
Ensures the provided disposable is disposed with the specified CompositeDisposable .
|
FinallySafe<TResult>(Action) |
IObservable<T> |
Ensure that finally is always called. Thanks to Lee Campbell for this.
|
InvalidateWhen<TResult, TTrigger>(IObservable<TTrigger?>) |
IObservable<T> |
Used to invalidate an aggregating stream. Used when there has been an inline change.
|
InvalidateWhen<TResult>(IObservable<Unit>) |
IObservable<T> |
Used to invalidate an aggregating stream. Used when there has been an inline change
i.e. a property changed or meta data has changed.
|
InvokeCommand<TResult, TResult, TTarget>(TTarget, Expression<Func<TTarget, ReactiveCommandBase<TResult, TResult>>>) |
IDisposable |
A utility method that will pipe an Observable to an ICommand (i.e.
it will first call its CanExecute with the provided value, then if
the command can be executed, Execute() will be called).
|
InvokeCommand<TResult, TResult>(ReactiveCommandBase<TResult, TResult>) |
IDisposable |
A utility method that will pipe an Observable to an ICommand (i.e.
it will first call its CanExecute with the provided value, then if
the command can be executed, Execute() will be called).
|
InvokeCommand<TResult, TTarget>(TTarget, Expression<Func<TTarget, ICommand>>) |
IDisposable |
A utility method that will pipe an Observable to an ICommand (i.e.
it will first call its CanExecute with the provided value, then if
the command can be executed, Execute() will be called).
|
InvokeCommand<TResult>(ICommand) |
IDisposable |
A utility method that will pipe an Observable to an ICommand (i.e.
it will first call its CanExecute with the provided value, then if
the command can be executed, Execute() will be called).
|
InvokeViewModelAction<T>(Action<T>) |
object |
This is a thing I lifted from Prism.
|
Log<TResult, TObj>(TObj, string?, Func<TResult, string>?) |
IObservable<T> |
Logs an Observable to Splat's Logger.
|
LoggedCatch<TResult, TObj, TException>(TObj, Func<TException, IObservable<TResult>>, string?) |
IObservable<T> |
Like Catch, but also prints a message and the error to the log.
|
LoggedCatch<TResult, TObj>(TObj, IObservable<TResult>?, string?) |
IObservable<T> |
Like Catch, but also prints a message and the error to the log.
|
MonitorStatus<TResult>() |
IObservable<ConnectionStatus> |
Monitors the status of a stream.
|
ObserveOn<TResult>(Control) |
IObservable<TSource> |
Wraps the source sequence in order to run its observer callbacks on the Windows Forms message loop associated with the specified control.
|
RetryWithBackOff<TResult, TException>(Func<TException, int, TimeSpan?>) |
IObservable<TSource> |
Retries the with back off.
|
SubscribeOn<TResult>(Control) |
IObservable<TSource> |
Wraps the source sequence in order to run its subscription and unsubscription logic on the Windows Forms message loop associated with the specified control.
|
SubscribeSafe<TResult>(string?, string?, int) |
IDisposable |
Subscribes to an Observable and provides default debugging in the case of an exception.
It will provide the caller information as part of the logging.
|
ToObservableChangeSet<TResult>(Func<TResult, TimeSpan?>, IScheduler?) |
IObservable<IChangeSet<T>> |
Converts the observable to an observable change set, allowing time expiry to be specified.
Change set observes observable change events.
|
ToObservableChangeSet<TResult>(Func<TResult, TimeSpan?>?, int, IScheduler?) |
IObservable<IChangeSet<T>> |
Converts the observable to an observable change set, allowing size and time limit to be specified.
Change set observes observable change events.
|
ToObservableChangeSet<TResult>(int, IScheduler?) |
IObservable<IChangeSet<T>> |
Converts the observable to an observable change set, with a specified limit of how large the list can be.
Change set observes observable change events.
|
ToObservableChangeSet<TResult>(IScheduler?) |
IObservable<IChangeSet<T>> |
Converts the observable to an observable change set.
Change set observes observable change events.
|
ToObservableChangeSet<TResult, TKey>(Func<TResult, TKey>, Func<TResult, TimeSpan?>?, int, IScheduler?) |
IObservable<IChangeSet<TObject, TKey>> |
Converts the observable to an observable change set.
Change set observes observable change events.
|
ToProperty<TObj, TResult>(TObj, Expression<Func<TObj, TResult>>, bool, IScheduler?) |
ObservableAsPropertyHelper<TRet> |
Converts an Observable to an ObservableAsPropertyHelper and
automatically provides the onChanged method to raise the property
changed notification.
|
ToProperty<TObj, TResult>(TObj, Expression<Func<TObj, TResult>>, Func<TResult>, bool, IScheduler?) |
ObservableAsPropertyHelper<TRet> |
Converts an Observable to an ObservableAsPropertyHelper and
automatically provides the onChanged method to raise the property
changed notification.
|
ToProperty<TObj, TResult>(TObj, Expression<Func<TObj, TResult>>, ObservableAsPropertyHelper<TResult>, bool, IScheduler?) |
ObservableAsPropertyHelper<TRet> |
Converts an Observable to an ObservableAsPropertyHelper and
automatically provides the onChanged method to raise the property
changed notification.
|
ToProperty<TObj, TResult>(TObj, Expression<Func<TObj, TResult>>, ObservableAsPropertyHelper<TResult>, Func<TResult>, bool, IScheduler?) |
ObservableAsPropertyHelper<TRet> |
Converts an Observable to an ObservableAsPropertyHelper and
automatically provides the onChanged method to raise the property
changed notification.
|
ToProperty<TObj, TResult>(TObj, Expression<Func<TObj, TResult>>, ObservableAsPropertyHelper<TResult>, TResult, bool, IScheduler?) |
ObservableAsPropertyHelper<TRet> |
Converts an Observable to an ObservableAsPropertyHelper and
automatically provides the onChanged method to raise the property
changed notification.
|
ToProperty<TObj, TResult>(TObj, Expression<Func<TObj, TResult>>, TResult, bool, IScheduler?) |
ObservableAsPropertyHelper<TRet> |
Converts an Observable to an ObservableAsPropertyHelper and
automatically provides the onChanged method to raise the property
changed notification.
|
ToProperty<TObj, TResult>(TObj, string, bool, IScheduler?) |
ObservableAsPropertyHelper<TRet> |
Converts an Observable to an ObservableAsPropertyHelper and
automatically provides the onChanged method to raise the property
changed notification.
|
ToProperty<TObj, TResult>(TObj, string, Func<TResult>, bool, IScheduler?) |
ObservableAsPropertyHelper<TRet> |
Converts an Observable to an ObservableAsPropertyHelper and
automatically provides the onChanged method to raise the property
changed notification.
|
ToProperty<TObj, TResult>(TObj, string, ObservableAsPropertyHelper<TResult>, bool, IScheduler?) |
ObservableAsPropertyHelper<TRet> |
Converts an Observable to an ObservableAsPropertyHelper and
automatically provides the onChanged method to raise the property
changed notification.
|
ToProperty<TObj, TResult>(TObj, string, ObservableAsPropertyHelper<TResult>, Func<TResult>, bool, IScheduler?) |
ObservableAsPropertyHelper<TRet> |
Converts an Observable to an ObservableAsPropertyHelper and
automatically provides the onChanged method to raise the property
changed notification.
|
ToProperty<TObj, TResult>(TObj, string, TResult, bool, IScheduler?) |
ObservableAsPropertyHelper<TRet> |
Converts an Observable to an ObservableAsPropertyHelper and
automatically provides the onChanged method to raise the property
changed notification.
|
ToPropertyEx<TObj, TResult>(TObj, Expression<Func<TObj, TResult>>, bool, IScheduler?) |
ObservableAsPropertyHelper<TRet> |
To the property execute.
|
ToPropertyEx<TObj, TResult>(TObj, Expression<Func<TObj, TResult>>, TResult, bool, IScheduler?) |
ObservableAsPropertyHelper<TRet> |
To the property execute.
|
ToSignal<TResult>() |
IObservable<Unit> |
Will convert an observable so that it's value is ignored and converted into just returning Unit .
This allows us just to be notified when the observable signals.
|
WhenAny<ReactiveCommand<TParam, TResult>, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>(Expression<Func<ReactiveCommand<TParam, TResult>, T1>>, Expression<Func<ReactiveCommand<TParam, TResult>, T2>>, Expression<Func<ReactiveCommand<TParam, TResult>, T3>>, Expression<Func<ReactiveCommand<TParam, TResult>, T4>>, Expression<Func<ReactiveCommand<TParam, TResult>, T5>>, Expression<Func<ReactiveCommand<TParam, TResult>, T6>>, Expression<Func<ReactiveCommand<TParam, TResult>, T7>>, Expression<Func<ReactiveCommand<TParam, TResult>, T8>>, Expression<Func<ReactiveCommand<TParam, TResult>, T9>>, Expression<Func<ReactiveCommand<TParam, TResult>, T10>>, Expression<Func<ReactiveCommand<TParam, TResult>, T11>>, Expression<Func<ReactiveCommand<TParam, TResult>, T12>>, Func<IObservedChange<ReactiveCommand<TParam, TResult>, T1>, IObservedChange<ReactiveCommand<TParam, TResult>, T2>, IObservedChange<ReactiveCommand<TParam, TResult>, T3>, IObservedChange<ReactiveCommand<TParam, TResult>, T4>, IObservedChange<ReactiveCommand<TParam, TResult>, T5>, IObservedChange<ReactiveCommand<TParam, TResult>, T6>, IObservedChange<ReactiveCommand<TParam, TResult>, T7>, IObservedChange<ReactiveCommand<TParam, TResult>, T8>, IObservedChange<ReactiveCommand<TParam, TResult>, T9>, IObservedChange<ReactiveCommand<TParam, TResult>, T10>, IObservedChange<ReactiveCommand<TParam, TResult>, T11>, IObservedChange<ReactiveCommand<TParam, TResult>, 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<ReactiveCommand<TParam, TResult>, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>(Expression<Func<ReactiveCommand<TParam, TResult>, T1>>, Expression<Func<ReactiveCommand<TParam, TResult>, T2>>, Expression<Func<ReactiveCommand<TParam, TResult>, T3>>, Expression<Func<ReactiveCommand<TParam, TResult>, T4>>, Expression<Func<ReactiveCommand<TParam, TResult>, T5>>, Expression<Func<ReactiveCommand<TParam, TResult>, T6>>, Expression<Func<ReactiveCommand<TParam, TResult>, T7>>, Expression<Func<ReactiveCommand<TParam, TResult>, T8>>, Expression<Func<ReactiveCommand<TParam, TResult>, T9>>, Expression<Func<ReactiveCommand<TParam, TResult>, T10>>, Expression<Func<ReactiveCommand<TParam, TResult>, T11>>, Func<IObservedChange<ReactiveCommand<TParam, TResult>, T1>, IObservedChange<ReactiveCommand<TParam, TResult>, T2>, IObservedChange<ReactiveCommand<TParam, TResult>, T3>, IObservedChange<ReactiveCommand<TParam, TResult>, T4>, IObservedChange<ReactiveCommand<TParam, TResult>, T5>, IObservedChange<ReactiveCommand<TParam, TResult>, T6>, IObservedChange<ReactiveCommand<TParam, TResult>, T7>, IObservedChange<ReactiveCommand<TParam, TResult>, T8>, IObservedChange<ReactiveCommand<TParam, TResult>, T9>, IObservedChange<ReactiveCommand<TParam, TResult>, T10>, IObservedChange<ReactiveCommand<TParam, TResult>, 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<ReactiveCommand<TParam, TResult>, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>(Expression<Func<ReactiveCommand<TParam, TResult>, T1>>, Expression<Func<ReactiveCommand<TParam, TResult>, T2>>, Expression<Func<ReactiveCommand<TParam, TResult>, T3>>, Expression<Func<ReactiveCommand<TParam, TResult>, T4>>, Expression<Func<ReactiveCommand<TParam, TResult>, T5>>, Expression<Func<ReactiveCommand<TParam, TResult>, T6>>, Expression<Func<ReactiveCommand<TParam, TResult>, T7>>, Expression<Func<ReactiveCommand<TParam, TResult>, T8>>, Expression<Func<ReactiveCommand<TParam, TResult>, T9>>, Expression<Func<ReactiveCommand<TParam, TResult>, T10>>, Func<IObservedChange<ReactiveCommand<TParam, TResult>, T1>, IObservedChange<ReactiveCommand<TParam, TResult>, T2>, IObservedChange<ReactiveCommand<TParam, TResult>, T3>, IObservedChange<ReactiveCommand<TParam, TResult>, T4>, IObservedChange<ReactiveCommand<TParam, TResult>, T5>, IObservedChange<ReactiveCommand<TParam, TResult>, T6>, IObservedChange<ReactiveCommand<TParam, TResult>, T7>, IObservedChange<ReactiveCommand<TParam, TResult>, T8>, IObservedChange<ReactiveCommand<TParam, TResult>, T9>, IObservedChange<ReactiveCommand<TParam, TResult>, 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<ReactiveCommand<TParam, TResult>, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9>(Expression<Func<ReactiveCommand<TParam, TResult>, T1>>, Expression<Func<ReactiveCommand<TParam, TResult>, T2>>, Expression<Func<ReactiveCommand<TParam, TResult>, T3>>, Expression<Func<ReactiveCommand<TParam, TResult>, T4>>, Expression<Func<ReactiveCommand<TParam, TResult>, T5>>, Expression<Func<ReactiveCommand<TParam, TResult>, T6>>, Expression<Func<ReactiveCommand<TParam, TResult>, T7>>, Expression<Func<ReactiveCommand<TParam, TResult>, T8>>, Expression<Func<ReactiveCommand<TParam, TResult>, T9>>, Func<IObservedChange<ReactiveCommand<TParam, TResult>, T1>, IObservedChange<ReactiveCommand<TParam, TResult>, T2>, IObservedChange<ReactiveCommand<TParam, TResult>, T3>, IObservedChange<ReactiveCommand<TParam, TResult>, T4>, IObservedChange<ReactiveCommand<TParam, TResult>, T5>, IObservedChange<ReactiveCommand<TParam, TResult>, T6>, IObservedChange<ReactiveCommand<TParam, TResult>, T7>, IObservedChange<ReactiveCommand<TParam, TResult>, T8>, IObservedChange<ReactiveCommand<TParam, TResult>, 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<ReactiveCommand<TParam, TResult>, TRet, T1, T2, T3, T4, T5, T6, T7, T8>(Expression<Func<ReactiveCommand<TParam, TResult>, T1>>, Expression<Func<ReactiveCommand<TParam, TResult>, T2>>, Expression<Func<ReactiveCommand<TParam, TResult>, T3>>, Expression<Func<ReactiveCommand<TParam, TResult>, T4>>, Expression<Func<ReactiveCommand<TParam, TResult>, T5>>, Expression<Func<ReactiveCommand<TParam, TResult>, T6>>, Expression<Func<ReactiveCommand<TParam, TResult>, T7>>, Expression<Func<ReactiveCommand<TParam, TResult>, T8>>, Func<IObservedChange<ReactiveCommand<TParam, TResult>, T1>, IObservedChange<ReactiveCommand<TParam, TResult>, T2>, IObservedChange<ReactiveCommand<TParam, TResult>, T3>, IObservedChange<ReactiveCommand<TParam, TResult>, T4>, IObservedChange<ReactiveCommand<TParam, TResult>, T5>, IObservedChange<ReactiveCommand<TParam, TResult>, T6>, IObservedChange<ReactiveCommand<TParam, TResult>, T7>, IObservedChange<ReactiveCommand<TParam, TResult>, 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<ReactiveCommand<TParam, TResult>, TRet, T1, T2, T3, T4, T5, T6, T7>(Expression<Func<ReactiveCommand<TParam, TResult>, T1>>, Expression<Func<ReactiveCommand<TParam, TResult>, T2>>, Expression<Func<ReactiveCommand<TParam, TResult>, T3>>, Expression<Func<ReactiveCommand<TParam, TResult>, T4>>, Expression<Func<ReactiveCommand<TParam, TResult>, T5>>, Expression<Func<ReactiveCommand<TParam, TResult>, T6>>, Expression<Func<ReactiveCommand<TParam, TResult>, T7>>, Func<IObservedChange<ReactiveCommand<TParam, TResult>, T1>, IObservedChange<ReactiveCommand<TParam, TResult>, T2>, IObservedChange<ReactiveCommand<TParam, TResult>, T3>, IObservedChange<ReactiveCommand<TParam, TResult>, T4>, IObservedChange<ReactiveCommand<TParam, TResult>, T5>, IObservedChange<ReactiveCommand<TParam, TResult>, T6>, IObservedChange<ReactiveCommand<TParam, TResult>, 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<ReactiveCommand<TParam, TResult>, TRet, T1, T2, T3, T4, T5, T6>(Expression<Func<ReactiveCommand<TParam, TResult>, T1>>, Expression<Func<ReactiveCommand<TParam, TResult>, T2>>, Expression<Func<ReactiveCommand<TParam, TResult>, T3>>, Expression<Func<ReactiveCommand<TParam, TResult>, T4>>, Expression<Func<ReactiveCommand<TParam, TResult>, T5>>, Expression<Func<ReactiveCommand<TParam, TResult>, T6>>, Func<IObservedChange<ReactiveCommand<TParam, TResult>, T1>, IObservedChange<ReactiveCommand<TParam, TResult>, T2>, IObservedChange<ReactiveCommand<TParam, TResult>, T3>, IObservedChange<ReactiveCommand<TParam, TResult>, T4>, IObservedChange<ReactiveCommand<TParam, TResult>, T5>, IObservedChange<ReactiveCommand<TParam, TResult>, 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<ReactiveCommand<TParam, TResult>, TRet, T1, T2, T3, T4, T5>(Expression<Func<ReactiveCommand<TParam, TResult>, T1>>, Expression<Func<ReactiveCommand<TParam, TResult>, T2>>, Expression<Func<ReactiveCommand<TParam, TResult>, T3>>, Expression<Func<ReactiveCommand<TParam, TResult>, T4>>, Expression<Func<ReactiveCommand<TParam, TResult>, T5>>, Func<IObservedChange<ReactiveCommand<TParam, TResult>, T1>, IObservedChange<ReactiveCommand<TParam, TResult>, T2>, IObservedChange<ReactiveCommand<TParam, TResult>, T3>, IObservedChange<ReactiveCommand<TParam, TResult>, T4>, IObservedChange<ReactiveCommand<TParam, TResult>, 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<ReactiveCommand<TParam, TResult>, TRet, T1, T2, T3, T4>(Expression<Func<ReactiveCommand<TParam, TResult>, T1>>, Expression<Func<ReactiveCommand<TParam, TResult>, T2>>, Expression<Func<ReactiveCommand<TParam, TResult>, T3>>, Expression<Func<ReactiveCommand<TParam, TResult>, T4>>, Func<IObservedChange<ReactiveCommand<TParam, TResult>, T1>, IObservedChange<ReactiveCommand<TParam, TResult>, T2>, IObservedChange<ReactiveCommand<TParam, TResult>, T3>, IObservedChange<ReactiveCommand<TParam, TResult>, 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<ReactiveCommand<TParam, TResult>, TRet, T1, T2, T3>(Expression<Func<ReactiveCommand<TParam, TResult>, T1>>, Expression<Func<ReactiveCommand<TParam, TResult>, T2>>, Expression<Func<ReactiveCommand<TParam, TResult>, T3>>, Func<IObservedChange<ReactiveCommand<TParam, TResult>, T1>, IObservedChange<ReactiveCommand<TParam, TResult>, T2>, IObservedChange<ReactiveCommand<TParam, TResult>, 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<ReactiveCommand<TParam, TResult>, TRet, T1, T2>(Expression<Func<ReactiveCommand<TParam, TResult>, T1>>, Expression<Func<ReactiveCommand<TParam, TResult>, T2>>, Func<IObservedChange<ReactiveCommand<TParam, TResult>, T1>, IObservedChange<ReactiveCommand<TParam, TResult>, 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<ReactiveCommand<TParam, TResult>, TRet, T1>(Expression<Func<ReactiveCommand<TParam, TResult>, T1>>, Func<IObservedChange<ReactiveCommand<TParam, TResult>, 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<ReactiveCommand<TParam, TResult>, TRet>(Expression, Expression, Expression, Expression, Expression, Expression, Expression, Expression, Expression, Expression, Expression, Expression, Func<IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, 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<ReactiveCommand<TParam, TResult>, TRet>(Expression, Expression, Expression, Expression, Expression, Expression, Expression, Expression, Expression, Expression, Expression, Func<IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, 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<ReactiveCommand<TParam, TResult>, TRet>(Expression, Expression, Expression, Expression, Expression, Expression, Expression, Expression, Expression, Expression, Func<IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, 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<ReactiveCommand<TParam, TResult>, TRet>(Expression, Expression, Expression, Expression, Expression, Expression, Expression, Expression, Expression, Func<IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, 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<ReactiveCommand<TParam, TResult>, TRet>(Expression, Expression, Expression, Expression, Expression, Expression, Expression, Expression, Func<IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, 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<ReactiveCommand<TParam, TResult>, TRet>(Expression, Expression, Expression, Expression, Expression, Expression, Expression, Func<IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, 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<ReactiveCommand<TParam, TResult>, TRet>(Expression, Expression, Expression, Expression, Expression, Expression, Func<IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, 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<ReactiveCommand<TParam, TResult>, TRet>(Expression, Expression, Expression, Expression, Expression, Func<IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, 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<ReactiveCommand<TParam, TResult>, TRet>(Expression, Expression, Expression, Expression, Func<IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, 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<ReactiveCommand<TParam, TResult>, TRet>(Expression, Expression, Expression, Func<IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, 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<ReactiveCommand<TParam, TResult>, TRet>(Expression, Expression, Func<IObservedChange<ReactiveCommand<TParam, TResult>, object>, IObservedChange<ReactiveCommand<TParam, TResult>, 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<ReactiveCommand<TParam, TResult>, TRet>(Expression, Func<IObservedChange<ReactiveCommand<TParam, TResult>, 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<ReactiveCommand<TParam, TResult>, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>(Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T1>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T2>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T3>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T4>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T5>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T6>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T7>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T8>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T9>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T10>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T11>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T12>>>, Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, TRet>) |
IObservable<TRet> |
|
WhenAnyObservable<ReactiveCommand<TParam, TResult>, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>(Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T1>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T2>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T3>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T4>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T5>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T6>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T7>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T8>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T9>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T10>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T11>>>, Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, TRet>) |
IObservable<TRet> |
|
WhenAnyObservable<ReactiveCommand<TParam, TResult>, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>(Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T1>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T2>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T3>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T4>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T5>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T6>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T7>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T8>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T9>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T10>>>, Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, TRet>) |
IObservable<TRet> |
|
WhenAnyObservable<ReactiveCommand<TParam, TResult>, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9>(Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T1>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T2>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T3>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T4>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T5>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T6>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T7>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T8>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T9>>>, Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, TRet>) |
IObservable<TRet> |
|
WhenAnyObservable<ReactiveCommand<TParam, TResult>, TRet, T1, T2, T3, T4, T5, T6, T7, T8>(Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T1>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T2>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T3>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T4>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T5>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T6>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T7>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T8>>>, Func<T1, T2, T3, T4, T5, T6, T7, T8, TRet>) |
IObservable<TRet> |
|
WhenAnyObservable<ReactiveCommand<TParam, TResult>, TRet, T1, T2, T3, T4, T5, T6, T7>(Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T1>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T2>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T3>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T4>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T5>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T6>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T7>>>, Func<T1, T2, T3, T4, T5, T6, T7, TRet>) |
IObservable<TRet> |
|
WhenAnyObservable<ReactiveCommand<TParam, TResult>, TRet, T1, T2, T3, T4, T5, T6>(Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T1>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T2>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T3>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T4>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T5>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T6>>>, Func<T1, T2, T3, T4, T5, T6, TRet>) |
IObservable<TRet> |
|
WhenAnyObservable<ReactiveCommand<TParam, TResult>, TRet, T1, T2, T3, T4, T5>(Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T1>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T2>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T3>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T4>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T5>>>, Func<T1, T2, T3, T4, T5, TRet>) |
IObservable<TRet> |
|
WhenAnyObservable<ReactiveCommand<TParam, TResult>, TRet, T1, T2, T3, T4>(Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T1>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T2>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T3>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T4>>>, Func<T1, T2, T3, T4, TRet>) |
IObservable<TRet> |
|
WhenAnyObservable<ReactiveCommand<TParam, TResult>, TRet, T1, T2, T3>(Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T1>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T2>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T3>>>, Func<T1, T2, T3, TRet>) |
IObservable<TRet> |
|
WhenAnyObservable<ReactiveCommand<TParam, TResult>, TRet, T1, T2>(Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T1>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<T2>>>, Func<T1, T2, TRet>) |
IObservable<TRet> |
|
WhenAnyObservable<ReactiveCommand<TParam, TResult>, TRet>(Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>) |
IObservable<TRet> |
|
WhenAnyObservable<ReactiveCommand<TParam, TResult>, TRet>(Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>) |
IObservable<TRet> |
|
WhenAnyObservable<ReactiveCommand<TParam, TResult>, TRet>(Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>) |
IObservable<TRet> |
|
WhenAnyObservable<ReactiveCommand<TParam, TResult>, TRet>(Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>) |
IObservable<TRet> |
|
WhenAnyObservable<ReactiveCommand<TParam, TResult>, TRet>(Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>) |
IObservable<TRet> |
|
WhenAnyObservable<ReactiveCommand<TParam, TResult>, TRet>(Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>) |
IObservable<TRet> |
|
WhenAnyObservable<ReactiveCommand<TParam, TResult>, TRet>(Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>) |
IObservable<TRet> |
|
WhenAnyObservable<ReactiveCommand<TParam, TResult>, TRet>(Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>) |
IObservable<TRet> |
|
WhenAnyObservable<ReactiveCommand<TParam, TResult>, TRet>(Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>) |
IObservable<TRet> |
|
WhenAnyObservable<ReactiveCommand<TParam, TResult>, TRet>(Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>) |
IObservable<TRet> |
|
WhenAnyObservable<ReactiveCommand<TParam, TResult>, TRet>(Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>) |
IObservable<TRet> |
|
WhenAnyObservable<ReactiveCommand<TParam, TResult>, TRet>(Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>, Expression<Func<ReactiveCommand<TParam, TResult>, IObservable<TRet>>>) |
IObservable<TRet> |
|
WhenAnyValue<ReactiveCommand<TParam, TResult>, T1, T2, T3, T4, T5, T6, T7>(Expression<Func<ReactiveCommand<TParam, TResult>, T1>>, Expression<Func<ReactiveCommand<TParam, TResult>, T2>>, Expression<Func<ReactiveCommand<TParam, TResult>, T3>>, Expression<Func<ReactiveCommand<TParam, TResult>, T4>>, Expression<Func<ReactiveCommand<TParam, TResult>, T5>>, Expression<Func<ReactiveCommand<TParam, TResult>, T6>>, Expression<Func<ReactiveCommand<TParam, TResult>, 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<ReactiveCommand<TParam, TResult>, T1, T2, T3, T4, T5, T6>(Expression<Func<ReactiveCommand<TParam, TResult>, T1>>, Expression<Func<ReactiveCommand<TParam, TResult>, T2>>, Expression<Func<ReactiveCommand<TParam, TResult>, T3>>, Expression<Func<ReactiveCommand<TParam, TResult>, T4>>, Expression<Func<ReactiveCommand<TParam, TResult>, T5>>, Expression<Func<ReactiveCommand<TParam, TResult>, 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<ReactiveCommand<TParam, TResult>, T1, T2, T3, T4, T5>(Expression<Func<ReactiveCommand<TParam, TResult>, T1>>, Expression<Func<ReactiveCommand<TParam, TResult>, T2>>, Expression<Func<ReactiveCommand<TParam, TResult>, T3>>, Expression<Func<ReactiveCommand<TParam, TResult>, T4>>, Expression<Func<ReactiveCommand<TParam, TResult>, 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<ReactiveCommand<TParam, TResult>, T1, T2, T3, T4>(Expression<Func<ReactiveCommand<TParam, TResult>, T1>>, Expression<Func<ReactiveCommand<TParam, TResult>, T2>>, Expression<Func<ReactiveCommand<TParam, TResult>, T3>>, Expression<Func<ReactiveCommand<TParam, TResult>, 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<ReactiveCommand<TParam, TResult>, T1, T2, T3>(Expression<Func<ReactiveCommand<TParam, TResult>, T1>>, Expression<Func<ReactiveCommand<TParam, TResult>, T2>>, Expression<Func<ReactiveCommand<TParam, TResult>, 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<ReactiveCommand<TParam, TResult>, T1, T2>(Expression<Func<ReactiveCommand<TParam, TResult>, T1>>, Expression<Func<ReactiveCommand<TParam, TResult>, 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<ReactiveCommand<TParam, TResult>, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>(Expression<Func<ReactiveCommand<TParam, TResult>, T1>>, Expression<Func<ReactiveCommand<TParam, TResult>, T2>>, Expression<Func<ReactiveCommand<TParam, TResult>, T3>>, Expression<Func<ReactiveCommand<TParam, TResult>, T4>>, Expression<Func<ReactiveCommand<TParam, TResult>, T5>>, Expression<Func<ReactiveCommand<TParam, TResult>, T6>>, Expression<Func<ReactiveCommand<TParam, TResult>, T7>>, Expression<Func<ReactiveCommand<TParam, TResult>, T8>>, Expression<Func<ReactiveCommand<TParam, TResult>, T9>>, Expression<Func<ReactiveCommand<TParam, TResult>, T10>>, Expression<Func<ReactiveCommand<TParam, TResult>, T11>>, Expression<Func<ReactiveCommand<TParam, TResult>, 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<ReactiveCommand<TParam, TResult>, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>(Expression<Func<ReactiveCommand<TParam, TResult>, T1>>, Expression<Func<ReactiveCommand<TParam, TResult>, T2>>, Expression<Func<ReactiveCommand<TParam, TResult>, T3>>, Expression<Func<ReactiveCommand<TParam, TResult>, T4>>, Expression<Func<ReactiveCommand<TParam, TResult>, T5>>, Expression<Func<ReactiveCommand<TParam, TResult>, T6>>, Expression<Func<ReactiveCommand<TParam, TResult>, T7>>, Expression<Func<ReactiveCommand<TParam, TResult>, T8>>, Expression<Func<ReactiveCommand<TParam, TResult>, T9>>, Expression<Func<ReactiveCommand<TParam, TResult>, T10>>, Expression<Func<ReactiveCommand<TParam, TResult>, 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<ReactiveCommand<TParam, TResult>, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>(Expression<Func<ReactiveCommand<TParam, TResult>, T1>>, Expression<Func<ReactiveCommand<TParam, TResult>, T2>>, Expression<Func<ReactiveCommand<TParam, TResult>, T3>>, Expression<Func<ReactiveCommand<TParam, TResult>, T4>>, Expression<Func<ReactiveCommand<TParam, TResult>, T5>>, Expression<Func<ReactiveCommand<TParam, TResult>, T6>>, Expression<Func<ReactiveCommand<TParam, TResult>, T7>>, Expression<Func<ReactiveCommand<TParam, TResult>, T8>>, Expression<Func<ReactiveCommand<TParam, TResult>, T9>>, Expression<Func<ReactiveCommand<TParam, TResult>, 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<ReactiveCommand<TParam, TResult>, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9>(Expression<Func<ReactiveCommand<TParam, TResult>, T1>>, Expression<Func<ReactiveCommand<TParam, TResult>, T2>>, Expression<Func<ReactiveCommand<TParam, TResult>, T3>>, Expression<Func<ReactiveCommand<TParam, TResult>, T4>>, Expression<Func<ReactiveCommand<TParam, TResult>, T5>>, Expression<Func<ReactiveCommand<TParam, TResult>, T6>>, Expression<Func<ReactiveCommand<TParam, TResult>, T7>>, Expression<Func<ReactiveCommand<TParam, TResult>, T8>>, Expression<Func<ReactiveCommand<TParam, TResult>, 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<ReactiveCommand<TParam, TResult>, TRet, T1, T2, T3, T4, T5, T6, T7, T8>(Expression<Func<ReactiveCommand<TParam, TResult>, T1>>, Expression<Func<ReactiveCommand<TParam, TResult>, T2>>, Expression<Func<ReactiveCommand<TParam, TResult>, T3>>, Expression<Func<ReactiveCommand<TParam, TResult>, T4>>, Expression<Func<ReactiveCommand<TParam, TResult>, T5>>, Expression<Func<ReactiveCommand<TParam, TResult>, T6>>, Expression<Func<ReactiveCommand<TParam, TResult>, T7>>, Expression<Func<ReactiveCommand<TParam, TResult>, 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<ReactiveCommand<TParam, TResult>, TRet, T1, T2, T3, T4, T5, T6, T7>(Expression<Func<ReactiveCommand<TParam, TResult>, T1>>, Expression<Func<ReactiveCommand<TParam, TResult>, T2>>, Expression<Func<ReactiveCommand<TParam, TResult>, T3>>, Expression<Func<ReactiveCommand<TParam, TResult>, T4>>, Expression<Func<ReactiveCommand<TParam, TResult>, T5>>, Expression<Func<ReactiveCommand<TParam, TResult>, T6>>, Expression<Func<ReactiveCommand<TParam, TResult>, 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<ReactiveCommand<TParam, TResult>, TRet, T1, T2, T3, T4, T5, T6>(Expression<Func<ReactiveCommand<TParam, TResult>, T1>>, Expression<Func<ReactiveCommand<TParam, TResult>, T2>>, Expression<Func<ReactiveCommand<TParam, TResult>, T3>>, Expression<Func<ReactiveCommand<TParam, TResult>, T4>>, Expression<Func<ReactiveCommand<TParam, TResult>, T5>>, Expression<Func<ReactiveCommand<TParam, TResult>, 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<ReactiveCommand<TParam, TResult>, TRet, T1, T2, T3, T4, T5>(Expression<Func<ReactiveCommand<TParam, TResult>, T1>>, Expression<Func<ReactiveCommand<TParam, TResult>, T2>>, Expression<Func<ReactiveCommand<TParam, TResult>, T3>>, Expression<Func<ReactiveCommand<TParam, TResult>, T4>>, Expression<Func<ReactiveCommand<TParam, TResult>, 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<ReactiveCommand<TParam, TResult>, TRet, T1, T2, T3, T4>(Expression<Func<ReactiveCommand<TParam, TResult>, T1>>, Expression<Func<ReactiveCommand<TParam, TResult>, T2>>, Expression<Func<ReactiveCommand<TParam, TResult>, T3>>, Expression<Func<ReactiveCommand<TParam, TResult>, 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<ReactiveCommand<TParam, TResult>, TRet, T1, T2, T3>(Expression<Func<ReactiveCommand<TParam, TResult>, T1>>, Expression<Func<ReactiveCommand<TParam, TResult>, T2>>, Expression<Func<ReactiveCommand<TParam, TResult>, 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<ReactiveCommand<TParam, TResult>, TRet, T1, T2>(Expression<Func<ReactiveCommand<TParam, TResult>, T1>>, Expression<Func<ReactiveCommand<TParam, TResult>, 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<ReactiveCommand<TParam, TResult>, TRet, T1>(Expression<Func<ReactiveCommand<TParam, TResult>, 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<ReactiveCommand<TParam, TResult>, TRet>(Expression<Func<ReactiveCommand<TParam, TResult>, 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<ReactiveCommand<TParam, TResult>, TKey, TField>(Dictionary<TKey, TField>, IDictionary<TKey, TField>) |
TBuilder |
Adds the specified dictionary to the provided dictionary.
|