RuleStatementAction Constructors

Definition

Initializes a new instance of the RuleStatementAction class.

Overloads

RuleStatementAction()

Initializes a new instance of the RuleStatementAction class.

RuleStatementAction(CodeExpression)

Initializes a new instance of the RuleStatementAction class using a CodeExpression.

RuleStatementAction(CodeStatement)

Initializes a new instance of the RuleStatementAction class using a CodeStatement.

RuleStatementAction()

Initializes a new instance of the RuleStatementAction class.

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

Applies to

RuleStatementAction(CodeExpression)

Initializes a new instance of the RuleStatementAction class using a CodeExpression.

public:
 RuleStatementAction(System::CodeDom::CodeExpression ^ codeDomExpression);
public RuleStatementAction (System.CodeDom.CodeExpression codeDomExpression);
new System.Workflow.Activities.Rules.RuleStatementAction : System.CodeDom.CodeExpression -> System.Workflow.Activities.Rules.RuleStatementAction
Public Sub New (codeDomExpression As CodeExpression)

Parameters

codeDomExpression
CodeExpression

A CodeExpression specifying the action to perform.

Applies to

RuleStatementAction(CodeStatement)

Initializes a new instance of the RuleStatementAction class using a CodeStatement.

public:
 RuleStatementAction(System::CodeDom::CodeStatement ^ codeDomStatement);
public RuleStatementAction (System.CodeDom.CodeStatement codeDomStatement);
new System.Workflow.Activities.Rules.RuleStatementAction : System.CodeDom.CodeStatement -> System.Workflow.Activities.Rules.RuleStatementAction
Public Sub New (codeDomStatement As CodeStatement)

Parameters

codeDomStatement
CodeStatement

A CodeStatement specifying the action to perform.

Applies to