Interface IPropertyExpressionBuilder<T>
Defines methods for setting and getting property values through an expression.
Namespace: Telerik.JustMock
Assembly: Telerik.JustMock.dll
Syntax
public interface IPropertyExpressionBuilder<T>
Type Parameters
T
|
Methods
Get()
Builds and expresison for getting the vlaue of a property.
Declaration
Expression<Func<T>> Get()
Returns
System.Linq.Expressions.Expression<System.Func<T>>
|
Set(T)
Builds and expresison for setting the vlaue of a property.
Declaration
Expression<Action> Set(T value)
Parameters
T
value
|
Returns
System.Linq.Expressions.Expression<System.Action>
|