System.Linq.Expressions.CatchBlock
namespace System.Linq.Expressions
{
public sealed class CatchBlock
{
public Expression Body { get; }
public Expression Filter { get; }
public Type Test { get; }
public ParameterExpression Variable { get; }
public CatchBlock Update(ParameterExpression variable, Expression filter, Expression body);
}
}