Catch<TException>.Action プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
キャッチされている例外のハンドラー。
public:
property System::Activities::ActivityAction<TException> ^ Action { System::Activities::ActivityAction<TException> ^ get(); void set(System::Activities::ActivityAction<TException> ^ value); };
public System.Activities.ActivityAction<TException> Action { get; set; }
member this.Action : System.Activities.ActivityAction<'Exception (requires 'Exception :> Exception)> with get, set
Public Property Action As ActivityAction(Of TException)
プロパティ値
ActivityAction<TException>
アクティビティ操作。
例
Catch<TException> アクティビティの Action プロパティを割り当てるコード サンプルを次に示します。 この例は、 TryCatch を使用したフローチャート アクティビティのエラー処理 のサンプルです。
FlowStep mwkStep = new FlowStep
{
Action = new TryCatch
{
DisplayName = "Try/Catch for Divide By Zero Exception",
Try = new Assign
{
DisplayName = "discount = 15 + (1 - 1/numberOfKids)*10",
To = new OutArgument<double>(discount),
Value = new InArgument<double>((ctx) => (15 + (1 - 1 / numberOfKids.Get(ctx)) * 10))
},
Catches =
{
new Catch<System.DivideByZeroException>
{
Action = new ActivityAction<System.DivideByZeroException>
{
Argument = ex,
DisplayName = "ActivityAction - DivideByZeroException",
Handler =
new Sequence
{
DisplayName = "Divide by Zero Exception Workflow",
Activities =
{
new WriteLine()
{
DisplayName = "WriteLine: DivideByZeroException",
Text = "DivideByZeroException: Promo code is MWK - but number of kids = 0"
},
new Assign<double>
{
DisplayName = "Exception - discount = 0",
To = discount,
Value = new InArgument<double>(0)
}
}
}
}
}
}
},
Next = flowDecision
};
注釈
例外ハンドラーは、ActivityAction<T> オブジェクトで表されます。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET