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