Class ObservingFunc<T1, T2, TResult>
Represents an observable expression with 2 input parameters
Inherited Members
Namespace: NMF.Expressions
Assembly: NMF.Expressions.dll
Syntax
public class ObservingFunc<T1, T2, TResult>
Type Parameters
Name | Description |
---|---|
T1 | The type of the input parameter 1 |
T2 | The type of the input parameter 2 |
TResult | The result type of the observing func |
Constructors
| Edit this page View SourceObservingFunc(Expression<Func<T1, T2, TResult>>)
Creates a new observable expression for the given expression
Declaration
public ObservingFunc(Expression<Func<T1, T2, TResult>> expression)
Parameters
Type | Name | Description |
---|---|---|
Expression<Func<T1, T2, TResult>> | expression | The expression that is to be observed |
Properties
| Edit this page View SourceIsReversable
Gets a value indicating whether this function can be reversed
Declaration
public virtual bool IsReversable { get; }
Property Value
Type | Description |
---|---|
bool |
Methods
| Edit this page View SourceEvaluate(T1, T2)
Invokes the expression
Declaration
[ObservableProxy(typeof(ObservingFunc<,,>), "Observe", false)]
public TResult Evaluate(T1 in1, T2 in2)
Parameters
Type | Name | Description |
---|---|---|
T1 | in1 | The input parameter 1 |
T2 | in2 | The input parameter 2 |
Returns
Type | Description |
---|---|
TResult | An observable value that keeps track of any changes |
EvaluatePartial(INotifyValue<T1>)
Invokes the expression partially
Declaration
[ObservableProxy(typeof(ObservingFunc<,,>), "ObservePartial", false)]
public Func<T2, TResult> EvaluatePartial(INotifyValue<T1> in1)
Parameters
Type | Name | Description |
---|---|---|
INotifyValue<T1> | in1 | The input parameter 1 |
Returns
Type | Description |
---|---|
Func<T2, TResult> | An observable value that keeps track of any changes |
EvaluatePartial(T1)
Invokes the expression partially
Declaration
[ObservableProxy(typeof(ObservingFunc<,,>), "ObservePartial", false)]
public Func<T2, TResult> EvaluatePartial(T1 in1)
Parameters
Type | Name | Description |
---|---|---|
T1 | in1 | The input parameter 1 |
Returns
Type | Description |
---|---|
Func<T2, TResult> | An observable value that keeps track of any changes |
FromExpression(Expression<Func<T1, T2, TResult>>)
Creates a new observable expression from the given expression
Declaration
public static ObservingFunc<T1, T2, TResult> FromExpression(Expression<Func<T1, T2, TResult>> expression)
Parameters
Type | Name | Description |
---|---|---|
Expression<Func<T1, T2, TResult>> | expression | The expression that is to be observed |
Returns
Type | Description |
---|---|
ObservingFunc<T1, T2, TResult> | An observable function |
InvokeReversable(INotifyValue<T1>, INotifyValue<T2>)
Invokes the expression
Declaration
public virtual INotifyReversableValue<TResult> InvokeReversable(INotifyValue<T1> in1, INotifyValue<T2> in2)
Parameters
Type | Name | Description |
---|---|---|
INotifyValue<T1> | in1 | The input parameter 1 |
INotifyValue<T2> | in2 | The input parameter 2 |
Returns
Type | Description |
---|---|
INotifyReversableValue<TResult> | An observable value that keeps track of any changes |
InvokeReversable(T1, T2)
Invokes the expression
Declaration
public virtual INotifyReversableValue<TResult> InvokeReversable(T1 in1, T2 in2)
Parameters
Type | Name | Description |
---|---|---|
T1 | in1 | The input parameter 1 |
T2 | in2 | The input parameter 2 |
Returns
Type | Description |
---|---|
INotifyReversableValue<TResult> | An observable value that keeps track of any changes |
Observe(INotifyValue<T1>, INotifyValue<T2>)
Invokes the expression
Declaration
public INotifyValue<TResult> Observe(INotifyValue<T1> in1, INotifyValue<T2> in2)
Parameters
Type | Name | Description |
---|---|---|
INotifyValue<T1> | in1 | The input parameter 1 |
INotifyValue<T2> | in2 | The input parameter 2 |
Returns
Type | Description |
---|---|
INotifyValue<TResult> | An observable value that keeps track of any changes |
Observe(T1, T2)
Invokes the expression
Declaration
public INotifyValue<TResult> Observe(T1 in1, T2 in2)
Parameters
Type | Name | Description |
---|---|---|
T1 | in1 | The input parameter 1 |
T2 | in2 | The input parameter 2 |
Returns
Type | Description |
---|---|
INotifyValue<TResult> | An observable value that keeps track of any changes |
ObservePartial(INotifyValue<T1>)
Invokes the expression partially
Declaration
public ObservingFunc<T2, TResult> ObservePartial(INotifyValue<T1> in1)
Parameters
Type | Name | Description |
---|---|---|
INotifyValue<T1> | in1 | The input parameter 1 |
Returns
Type | Description |
---|---|
ObservingFunc<T2, TResult> | An observable value that keeps track of any changes |
ToString()
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
string |
Overrides
Operators
| Edit this page View Sourceimplicit operator ObservingFunc<T1, T2, TResult>(Expression<Func<T1, T2, TResult>>)
Creates a new observable expression
Declaration
public static implicit operator ObservingFunc<T1, T2, TResult>(Expression<Func<T1, T2, TResult>> expression)
Parameters
Type | Name | Description |
---|---|---|
Expression<Func<T1, T2, TResult>> | expression | The expression that is to be observed |
Returns
Type | Description |
---|---|
ObservingFunc<T1, T2, TResult> | An observable function |