Expression.MakeCatchBlock メソッド

定義

指定された要素を使用して、catch ステートメントを表す CatchBlock を作成します。

public:
 static System::Linq::Expressions::CatchBlock ^ MakeCatchBlock(Type ^ type, System::Linq::Expressions::ParameterExpression ^ variable, System::Linq::Expressions::Expression ^ body, System::Linq::Expressions::Expression ^ filter);
public static System.Linq.Expressions.CatchBlock MakeCatchBlock (Type type, System.Linq.Expressions.ParameterExpression variable, System.Linq.Expressions.Expression body, System.Linq.Expressions.Expression filter);
public static System.Linq.Expressions.CatchBlock MakeCatchBlock (Type type, System.Linq.Expressions.ParameterExpression? variable, System.Linq.Expressions.Expression body, System.Linq.Expressions.Expression? filter);
static member MakeCatchBlock : Type * System.Linq.Expressions.ParameterExpression * System.Linq.Expressions.Expression * System.Linq.Expressions.Expression -> System.Linq.Expressions.CatchBlock
Public Shared Function MakeCatchBlock (type As Type, variable As ParameterExpression, body As Expression, filter As Expression) As CatchBlock

パラメーター

type
Type

この Type によって処理される ExceptionCatchBlock

variable
ParameterExpression

このハンドラーによってキャッチされる ParameterExpression オブジェクトへの参照を表す Exception

body
Expression

catch ステートメントの本体。

filter
Expression

Exception フィルターの本体。

戻り値

作成された CatchBlock

注釈

type は null 以外であり、 の variable 型と一致している必要があります (指定されている場合)。

適用対象