1 write to Handlers
System.Linq.Expressions (1)
System\Linq\Expressions\TryExpression.cs (1)
28Handlers = handlers;
10 references to Handlers
System.Linq.Expressions (10)
System\Linq\Expressions\Compiler\LambdaCompiler.Statements.cs (1)
840foreach (CatchBlock cb in node.Handlers)
System\Linq\Expressions\Compiler\StackSpiller.cs (1)
958ReadOnlyCollection<CatchBlock> handlers = node.Handlers;
System\Linq\Expressions\DebugViewWriter.cs (1)
1092Visit(node.Handlers, VisitCatchBlock);
System\Linq\Expressions\Expression.DebuggerProxy.cs (1)
450public ReadOnlyCollection<CatchBlock> Handlers => _node.Handlers;
System\Linq\Expressions\ExpressionVisitor.cs (1)
515Visit(node.Handlers, VisitCatchBlock),
System\Linq\Expressions\Interpreter\LightCompiler.cs (3)
2004if (node.Handlers.Count > 0) 2007foreach (CatchBlock handler in node.Handlers) 2101Debug.Assert(expr.Handlers.Count == 0);
System\Linq\Expressions\TryExpression.cs (2)
79/// <param name="handlers">The <see cref="Handlers"/> property of the result.</param> 87if (ExpressionUtils.SameElements(ref handlers!, Handlers))