Class ReversableObservingFunc<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TResult>
Represents an observable expression with 15 input parameters and a custom update handler
Inheritance
Inherited Members
Namespace: NMF.Expressions
Assembly: NMF.Expressions.dll
Syntax
public class ReversableObservingFunc<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TResult> : ObservingFunc<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TResult>
Type Parameters
Name | Description |
---|---|
T1 | The type of the input parameter 1 |
T2 | The type of the input parameter 2 |
T3 | The type of the input parameter 3 |
T4 | The type of the input parameter 4 |
T5 | The type of the input parameter 5 |
T6 | The type of the input parameter 6 |
T7 | The type of the input parameter 7 |
T8 | The type of the input parameter 8 |
T9 | The type of the input parameter 9 |
T10 | The type of the input parameter 10 |
T11 | The type of the input parameter 11 |
T12 | The type of the input parameter 12 |
T13 | The type of the input parameter 13 |
T14 | The type of the input parameter 14 |
T15 | The type of the input parameter 15 |
TResult | The type of the result |
Constructors
| Edit this page View SourceReversableObservingFunc(Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TResult>>, Action<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TResult>)
Creates a new observable expression for the given expression
Declaration
public ReversableObservingFunc(Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TResult>> expression, Action<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TResult> updateHandler)
Parameters
Type | Name | Description |
---|---|---|
Expression<Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TResult>> | expression | The expression that is to be observed |
Action<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TResult> | updateHandler | A function that is executed when the result is changed |
Properties
| Edit this page View SourceIsReversable
Gets a value indicating whether this function can be reversed
Declaration
public override bool IsReversable { get; }
Property Value
Type | Description |
---|---|
bool |
Overrides
| Edit this page View SourceUpdateHandler
The method that handles value updates for this func
Declaration
public Action<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TResult> UpdateHandler { get; }
Property Value
Type | Description |
---|---|
Action<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TResult> |
Methods
| Edit this page View SourceInvokeReversable(INotifyValue<T1>, INotifyValue<T2>, INotifyValue<T3>, INotifyValue<T4>, INotifyValue<T5>, INotifyValue<T6>, INotifyValue<T7>, INotifyValue<T8>, INotifyValue<T9>, INotifyValue<T10>, INotifyValue<T11>, INotifyValue<T12>, INotifyValue<T13>, INotifyValue<T14>, INotifyValue<T15>)
Invokes the expression
Declaration
public override INotifyReversableValue<TResult> InvokeReversable(INotifyValue<T1> in1, INotifyValue<T2> in2, INotifyValue<T3> in3, INotifyValue<T4> in4, INotifyValue<T5> in5, INotifyValue<T6> in6, INotifyValue<T7> in7, INotifyValue<T8> in8, INotifyValue<T9> in9, INotifyValue<T10> in10, INotifyValue<T11> in11, INotifyValue<T12> in12, INotifyValue<T13> in13, INotifyValue<T14> in14, INotifyValue<T15> in15)
Parameters
Type | Name | Description |
---|---|---|
INotifyValue<T1> | in1 | The input parameter 1 |
INotifyValue<T2> | in2 | The input parameter 2 |
INotifyValue<T3> | in3 | The input parameter 3 |
INotifyValue<T4> | in4 | The input parameter 4 |
INotifyValue<T5> | in5 | The input parameter 5 |
INotifyValue<T6> | in6 | The input parameter 6 |
INotifyValue<T7> | in7 | The input parameter 7 |
INotifyValue<T8> | in8 | The input parameter 8 |
INotifyValue<T9> | in9 | The input parameter 9 |
INotifyValue<T10> | in10 | The input parameter 10 |
INotifyValue<T11> | in11 | The input parameter 11 |
INotifyValue<T12> | in12 | The input parameter 12 |
INotifyValue<T13> | in13 | The input parameter 13 |
INotifyValue<T14> | in14 | The input parameter 14 |
INotifyValue<T15> | in15 | The input parameter 15 |
Returns
Type | Description |
---|---|
INotifyReversableValue<TResult> | An observable value that keeps track of any changes |
Overrides
| Edit this page View SourceInvokeReversable(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15)
Invokes the expression
Declaration
public override INotifyReversableValue<TResult> InvokeReversable(T1 in1, T2 in2, T3 in3, T4 in4, T5 in5, T6 in6, T7 in7, T8 in8, T9 in9, T10 in10, T11 in11, T12 in12, T13 in13, T14 in14, T15 in15)
Parameters
Type | Name | Description |
---|---|---|
T1 | in1 | The input parameter 1 |
T2 | in2 | The input parameter 2 |
T3 | in3 | The input parameter 3 |
T4 | in4 | The input parameter 4 |
T5 | in5 | The input parameter 5 |
T6 | in6 | The input parameter 6 |
T7 | in7 | The input parameter 7 |
T8 | in8 | The input parameter 8 |
T9 | in9 | The input parameter 9 |
T10 | in10 | The input parameter 10 |
T11 | in11 | The input parameter 11 |
T12 | in12 | The input parameter 12 |
T13 | in13 | The input parameter 13 |
T14 | in14 | The input parameter 14 |
T15 | in15 | The input parameter 15 |
Returns
Type | Description |
---|---|
INotifyReversableValue<TResult> | An observable value that keeps track of any changes |