UpdatedConditionAction Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the UpdatedConditionAction class.
Overloads
UpdatedConditionAction() |
Initializes a new instance of the UpdatedConditionAction class. |
UpdatedConditionAction(RuleCondition, RuleCondition) |
Initializes a new instance of the UpdatedConditionAction class, with the existing and new conditions of the change. |
UpdatedConditionAction()
Initializes a new instance of the UpdatedConditionAction class.
public:
UpdatedConditionAction();
public UpdatedConditionAction ();
Public Sub New ()
Applies to
UpdatedConditionAction(RuleCondition, RuleCondition)
Initializes a new instance of the UpdatedConditionAction class, with the existing and new conditions of the change.
public:
UpdatedConditionAction(System::Workflow::Activities::Rules::RuleCondition ^ conditionDefinition, System::Workflow::Activities::Rules::RuleCondition ^ newConditionDefinition);
public UpdatedConditionAction (System.Workflow.Activities.Rules.RuleCondition conditionDefinition, System.Workflow.Activities.Rules.RuleCondition newConditionDefinition);
new System.Workflow.Activities.Rules.UpdatedConditionAction : System.Workflow.Activities.Rules.RuleCondition * System.Workflow.Activities.Rules.RuleCondition -> System.Workflow.Activities.Rules.UpdatedConditionAction
Public Sub New (conditionDefinition As RuleCondition, newConditionDefinition As RuleCondition)
Parameters
- conditionDefinition
- RuleCondition
The condition being replaced.
- newConditionDefinition
- RuleCondition
The replacing condition.
Exceptions
conditionDefinition
is a null reference (Nothing
in Visual Basic).
-or-
newConditionDefinition
is a null reference (Nothing
).
The name of the conditionDefinition
is not equal to the name of newConditionDefinition
.