Rule.ThenActions 属性

定义

获取要在 THEN case 中执行的 RuleAction 类的集合。

public:
 property System::Collections::Generic::IList<System::Workflow::Activities::Rules::RuleAction ^> ^ ThenActions { System::Collections::Generic::IList<System::Workflow::Activities::Rules::RuleAction ^> ^ get(); };
public System.Collections.Generic.IList<System.Workflow.Activities.Rules.RuleAction> ThenActions { get; }
member this.ThenActions : System.Collections.Generic.IList<System.Workflow.Activities.Rules.RuleAction>
Public ReadOnly Property ThenActions As IList(Of RuleAction)

属性值

IList<RuleAction>

要在 THEN case 中执行的 RuleAction 类的集合。

注解

ThenActions 通常对活动的一个属性设置变量值、调用活动的一个方法或对引用的程序集中的类型调用静态方法。

RuleHaltAction 导致 RuleSet 停止执行并使控制返回到调用方法。 RuleUpdateAction 显式指示规则在更新变量。 这将导致重新计算所有受影响的规则。

适用于