32 references to IfFalse
System.Activities (4)
Microsoft\VisualBasic\Activities\VisualBasicDesignerHelper.cs (1)
430
FindTypeReferences(conditional.
IfFalse
, typeReferences);
Microsoft\VisualBasic\Activities\VisualBasicHelper.cs (2)
744
expr3 = Rewrite(conditional.
IfFalse
, lambdaParameters, out abort);
1245
return FindParameter(conditional.Test) ?? FindParameter(conditional.IfTrue) ?? FindParameter(conditional.
IfFalse
);
System\Activities\ExpressionUtilities.cs (1)
946
hasChanged |= TryRewriteLambdaExpression(conditional.
IfFalse
, out right, publicAccessor);
System.Core (11)
Microsoft\Scripting\Ast\ConditionalExpression.cs (2)
109
/// <param name="ifFalse">The <see cref="
IfFalse
" /> property of the result.</param>
112
if (test == Test && ifTrue == IfTrue && ifFalse ==
IfFalse
) {
Microsoft\Scripting\Ast\DebugViewWriter.cs (1)
478
Visit(node.
IfFalse
);
Microsoft\Scripting\Ast\Expression.DebuggerProxy.cs (1)
90
public Expression IfFalse { get { return _node.
IfFalse
; } }
Microsoft\Scripting\Ast\ExpressionStringBuilder.cs (1)
379
Visit(node.
IfFalse
);
Microsoft\Scripting\Ast\ExpressionVisitor.cs (1)
250
return node.Update(Visit(node.Test), Visit(node.IfTrue), Visit(node.
IfFalse
));
Microsoft\Scripting\Compiler\LambdaCompiler.Logical.cs (2)
43
if (NotEmpty(node.
IfFalse
)) {
53
EmitExpressionAsType(node.
IfFalse
, node.Type, flags);
Microsoft\Scripting\Compiler\StackSpiller.cs (1)
326
Result ifFalse = RewriteExpression(node.
IfFalse
, stack);
System\Linq\Expressions\ExpressionVisitor.cs (2)
144
Expression ifFalse = this.Visit(c.
IfFalse
);
145
if (test != c.Test || ifTrue != c.IfTrue || ifFalse != c.
IfFalse
) {
System.Data.Entity (4)
System\Data\Common\Internal\Materialization\CoordinatorScratchpad.cs (1)
395
var ifFalse = c.
IfFalse
as MethodCallExpression;
System\Data\Objects\ELinq\EntityExpressionVisitor.cs (2)
167
Expression ifFalse = this.Visit(c.
IfFalse
);
168
if (test != c.Test || ifTrue != c.IfTrue || ifFalse != c.
IfFalse
)
System\Data\Objects\ELinq\Translator.cs (1)
877
DbExpression elseExpression = parent.TranslateExpression(linq.
IfFalse
);
System.Data.Linq (3)
SqlClient\Query\Funcletizer.cs (2)
271
Expression ifFalse = this.Visit(c.
IfFalse
);
272
if (test != c.Test || ifTrue != c.IfTrue || ifFalse != c.
IfFalse
) {
SqlClient\Query\QueryConverter.cs (1)
811
SqlExpression @else = this.VisitExpression(cond.
IfFalse
);
System.Data.Services (4)
parent\Client\System\Data\Services\Client\ALinq\ALinqExpressionVisitor.cs (2)
287
Expression iffalse = this.Visit(c.
IfFalse
);
288
if (test != c.Test || iftrue != c.IfTrue || iffalse != c.
IfFalse
)
System\Data\Services\Parsing\RequestQueryParser.cs (1)
1260
return IsOpenExpression(((ConditionalExpression)input).
IfFalse
);
System\Data\Services\Providers\BasicExpandProvider.cs (1)
1893
ExpandNode falseAnnotation = this.GetExpandNodeAnnotation(c.
IfFalse
);
System.Data.Services.Client (6)
System\Data\Services\Client\ALinq\ALinqExpressionVisitor.cs (2)
287
Expression iffalse = this.Visit(c.
IfFalse
);
288
if (test != c.Test || iftrue != c.IfTrue || iffalse != c.
IfFalse
)
System\Data\Services\Client\ALinq\ProjectionAnalyzer.cs (2)
603
if (ClientType.CheckElementTypeIsEntity(c.Test.Type) || ClientType.CheckElementTypeIsEntity(c.IfTrue.Type) || ClientType.CheckElementTypeIsEntity(c.
IfFalse
.Type)
604
|| IsCollectionProducingExpression(c.Test) || IsCollectionProducingExpression(c.IfTrue) || IsCollectionProducingExpression(c.
IfFalse
))
System\Data\Services\Client\ALinq\ResourceBinder.cs (2)
1940
assignedCandidate = conditional.
IfFalse
;
1945
if (!MatchNullConstant(conditional.
IfFalse
))