TryCatch.Catches 属性

定义

Catch 活动引发异常时要检查的 Try 元素的集合。

public:
 property System::Collections::ObjectModel::Collection<System::Activities::Statements::Catch ^> ^ Catches { System::Collections::ObjectModel::Collection<System::Activities::Statements::Catch ^> ^ get(); };
[System.Windows.Markup.DependsOn("Try")]
public System.Collections.ObjectModel.Collection<System.Activities.Statements.Catch> Catches { get; }
[<System.Windows.Markup.DependsOn("Try")>]
member this.Catches : System.Collections.ObjectModel.Collection<System.Activities.Statements.Catch>
Public ReadOnly Property Catches As Collection(Of Catch)

属性值

Catch 集合。

属性

注解

Catch 按将其添加到集合的顺序进行计算。 如果找到异常类型的完全匹配项,则会执行匹配 Catch 的活动。 如果未找到完全匹配项, Catch 则执行最接近匹配 ExceptionType 的 。

一旦放置在设计器中, Catch 活动就不能在设计器中重新排序。 若要对活动集合 Catch 重新排序,请删除活动,然后按正确的顺序重新添加它们,或使用工作流的 XAML (代码) 视图。

适用于