20 references to IfFalse
System.Linq.Expressions (19)
System\Linq\Expressions\Compiler\LambdaCompiler.Logical.cs (2)
23if (NotEmpty(node.IfFalse)) 37EmitExpressionAsType(node.IfFalse, node.Type, flags);
System\Linq\Expressions\Compiler\StackSpiller.cs (1)
340Result ifFalse = RewriteExpression(node.IfFalse, stack);
System\Linq\Expressions\ConditionalExpression.cs (9)
87/// <param name="ifFalse">The <see cref="IfFalse"/> property of the result.</param> 91if (test == Test && ifTrue == IfTrue && ifFalse == IfFalse) 130/// <param name="ifFalse">An <see cref="Expression"/> to set the <see cref="ConditionalExpression.IfFalse"/> property equal to.</param> 133/// and <see cref="ConditionalExpression.IfFalse"/> properties set to the specified values.</returns> 157/// <param name="ifFalse">An <see cref="Expression"/> to set the <see cref="ConditionalExpression.IfFalse"/> property equal to.</param> 161/// and <see cref="ConditionalExpression.IfFalse"/> properties set to the specified values.</returns> 196/// properties set to the specified values. The <see cref="ConditionalExpression.IfFalse"/> property is set to default expression and 208/// <param name="ifFalse">An <see cref="Expression"/> to set the <see cref="ConditionalExpression.IfFalse"/> property equal to.</param> 211/// and <see cref="ConditionalExpression.IfFalse"/> properties set to the specified values. The type of the resulting <see cref="ConditionalExpression"/>
System\Linq\Expressions\DebugViewWriter.cs (1)
445Visit(node.IfFalse);
System\Linq\Expressions\Expression.DebuggerProxy.cs (1)
81public Expression IfFalse => _node.IfFalse;
System\Linq\Expressions\ExpressionStringBuilder.cs (1)
345Visit(node.IfFalse);
System\Linq\Expressions\ExpressionVisitor.cs (1)
232return node.Update(Visit(node.Test), Visit(node.IfTrue), Visit(node.IfFalse));
System\Linq\Expressions\Interpreter\LightCompiler.cs (3)
1482Compile(node.IfFalse, asVoid); 1491if (node.IfFalse != AstUtils.Empty) 1496Compile(node.IfFalse, asVoid);
System.Linq.Queryable (1)
System\Linq\EnumerableRewriter.cs (1)
385Expression ifFalse = Visit(c.IfFalse);