Class CommandExecutionResult
The result of command execution
Inheritance
↳ object
↳ CommandExecutionResult
Inherited Members
Equals(object)
Equals(object, object)
GetHashCode()
GetType()
MemberwiseClone()
ReferenceEquals(object, object)
ToString()
Namespace: OptimaJet.Workflow.Core.Runtime
Assembly: OptimaJet.Workflow.Core.dll
Syntaxpublic class CommandExecutionResult
Constructors
CommandExecutionResult(string, bool, ProcessInstance, string)
Declarationpublic CommandExecutionResult(string commandName, bool wasExecuted, ProcessInstance processInstance, string message = null)
Type | Name | Description |
---|---|---|
string | commandName | |
bool | wasExecuted | |
ProcessInstance | processInstance | |
string | message |
Properties
CommandName
Name of command which was executed
Declarationpublic string CommandName { get; set; }
Type | Description |
---|---|
string |
WasExecuted
If true, the command was executed
Declarationpublic bool WasExecuted { get; set; }
Type | Description |
---|---|
bool |
ProcessInstance
The process, after executing the command
Declarationpublic ProcessInstance ProcessInstance { get; set; }
Type | Description |
---|---|
ProcessInstance |
Message
Declarationpublic string Message { get; set; }
Type | Description |
---|---|
string |