C# Class System.Linq.Expressions.ConditionalExpression

Inheritance: Expression
Mostra file Open project: dotnet/corefx Class Usage Examples

Public Methods

Method Description
Update ( Expression test, Expression ifTrue, Expression ifFalse ) : ConditionalExpression

Creates a new expression that is like this one, but using the supplied children. If all of the children are the same, it will return this expression.

Protected Methods

Method Description
Accept ( ExpressionVisitor visitor ) : Expression

Dispatches to the specific visit method for this node type.

Private Methods

Method Description
ConditionalExpression ( Expression test, Expression ifTrue ) : System.Dynamic.Utils
GetFalse ( ) : Expression
Make ( Expression test, Expression ifTrue, Expression ifFalse, Type type ) : ConditionalExpression

Method Details

Accept() protected method

Dispatches to the specific visit method for this node type.
protected Accept ( ExpressionVisitor visitor ) : Expression
visitor ExpressionVisitor
return Expression

Update() public method

Creates a new expression that is like this one, but using the supplied children. If all of the children are the same, it will return this expression.
public Update ( Expression test, Expression ifTrue, Expression ifFalse ) : ConditionalExpression
test Expression The property of the result.
ifTrue Expression The property of the result.
ifFalse Expression The property of the result.
return ConditionalExpression