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
Syntaxpublic class ActionDefinitionReference
Properties
ActionName
Name of the action
Declarationpublic string ActionName { get; set; }
Type | Description |
---|---|
string |
Order
Execution order of the action
Declarationpublic int Order { get; set; }
Type | Description |
---|---|
int |
ActionParameter
Additional parameter which is passed to the appropriate methods IWorkflowActionProvider
Declarationpublic string ActionParameter { get; set; }
Type | Description |
---|---|
string |
IsSystem
Determines whether the action reference is system
Declarationpublic bool IsSystem { get; set; }
Type | Description |
---|---|
bool |
Methods
Create(string, string, string)
Create ActionDefinitionReference object
Declarationpublic static ActionDefinitionReference Create(string actionName, string order, string parameter)
Type | Name | Description |
---|---|---|
string | actionName | Name of the action |
string | order | Execution order of the action |
string | parameter | Additional parameter which is passed to the appropriate methods <xref href="OptimaJet.Workflow.Core.Runtime.IWorkflowActionProvider" data-throw-if-not-resolved="false"></xref> |
Type | Description |
---|---|
ActionDefinitionReference | ActionDefinitionReference object |
Clone()
Declarationpublic ActionDefinitionReference Clone()
Type | Description |
---|---|
ActionDefinitionReference |