UpdatedRuleSetAction Constructors

Definition

Initializes a new instance of the UpdatedRuleSetAction class.

Overloads

UpdatedRuleSetAction()

Initializes a new instance of the UpdatedRuleSetAction class.

UpdatedRuleSetAction(RuleSet, RuleSet)

Initializes a new instance of the UpdatedRuleSetAction class by using the original and the updated RuleSet classes.

UpdatedRuleSetAction()

Initializes a new instance of the UpdatedRuleSetAction class.

public:
 UpdatedRuleSetAction();
public UpdatedRuleSetAction ();
Public Sub New ()

Applies to

UpdatedRuleSetAction(RuleSet, RuleSet)

Initializes a new instance of the UpdatedRuleSetAction class by using the original and the updated RuleSet classes.

public:
 UpdatedRuleSetAction(System::Workflow::Activities::Rules::RuleSet ^ originalRuleSetDefinition, System::Workflow::Activities::Rules::RuleSet ^ updatedRuleSetDefinition);
public UpdatedRuleSetAction (System.Workflow.Activities.Rules.RuleSet originalRuleSetDefinition, System.Workflow.Activities.Rules.RuleSet updatedRuleSetDefinition);
new System.Workflow.Activities.Rules.UpdatedRuleSetAction : System.Workflow.Activities.Rules.RuleSet * System.Workflow.Activities.Rules.RuleSet -> System.Workflow.Activities.Rules.UpdatedRuleSetAction
Public Sub New (originalRuleSetDefinition As RuleSet, updatedRuleSetDefinition As RuleSet)

Parameters

originalRuleSetDefinition
RuleSet

The original RuleSet.

updatedRuleSetDefinition
RuleSet

The updated RuleSet.

Exceptions

The RuleSetDefinition or updatedRuleSetDefinition is null.

The names of the two RuleSets are not the same

Applies to