1 write to Fault
System.Linq.Expressions (1)
System\Linq\Expressions\TryExpression.cs (1)
30
Fault
= fault;
11 references to Fault
System.Linq.Expressions (11)
System\Linq\Expressions\Compiler\LambdaCompiler.Statements.cs (2)
877
if (node.Finally != null || node.
Fault
!= null)
891
EmitExpressionAsVoid(node.Finally ?? node.
Fault
!);
System\Linq\Expressions\Compiler\StackSpiller.cs (1)
999
Result fault = RewriteExpression(node.
Fault
, Stack.Empty);
System\Linq\Expressions\DebugViewWriter.cs (2)
1100
else if (node.
Fault
!= null)
1104
Visit(node.
Fault
);
System\Linq\Expressions\Expression.DebuggerProxy.cs (1)
448
public Expression? Fault => _node.
Fault
;
System\Linq\Expressions\ExpressionVisitor.cs (1)
517
Visit(node.
Fault
)
System\Linq\Expressions\Interpreter\LightCompiler.cs (2)
1967
if (node.
Fault
!= null)
2125
CompileAsVoid(expr.
Fault
!);
System\Linq\Expressions\TryExpression.cs (2)
81
/// <param name="fault">The <see cref="
Fault
"/> property of the result.</param>
85
if (body == Body & @finally == Finally & fault ==
Fault
)