Skip to main content

Introducing Formengine - The New Formbuilder, try for FREE formengine.io.

Class ActionDefinitionReference

Represent a reference on action in a process scheme

Inheritance

↳ object

    ↳ ActionDefinitionReference

Inherited Members

Equals(object)

Equals(object, object)

GetHashCode()

GetType()

MemberwiseClone()

ReferenceEquals(object, object)

ToString()

Namespace: OptimaJet.Workflow.Core.Model

Assembly: OptimaJet.Workflow.Core.dll

Syntax
public class ActionDefinitionReference

Properties

ActionName

Name of the action

Declaration
public string ActionName { get; set; }
Property value
TypeDescription
string

Order

Execution order of the action

Declaration
public int Order { get; set; }
Property value
TypeDescription
int

ActionParameter

Additional parameter which is passed to the appropriate methods IWorkflowActionProvider

Declaration
public string ActionParameter { get; set; }
Property value
TypeDescription
string

IsSystem

Determines whether the action reference is system

Declaration
public bool IsSystem { get; set; }
Property value
TypeDescription
bool

Methods

Create(string, string, string)

Create ActionDefinitionReference object

Declaration
public static ActionDefinitionReference Create(string actionName, string order, string parameter)
Parameters
TypeNameDescription
stringactionNameName of the action
stringorderExecution order of the action
stringparameterAdditional parameter which is passed to the appropriate methods <xref href="OptimaJet.Workflow.Core.Runtime.IWorkflowActionProvider" data-throw-if-not-resolved="false"></xref>
Returns
TypeDescription
ActionDefinitionReferenceActionDefinitionReference object

Clone()

Declaration
public ActionDefinitionReference Clone()
Returns
TypeDescription
ActionDefinitionReference

Extension Methods