StepArguments
Represents the arguments and metadata for a workflow step execution.
The StepArguments class encapsulates the essential information needed to identify and execute a workflow step. It provides a structured way to pass step-specific information through the workflow system, including the step's unique identifier, key, name, and type code. This class is used in conjunction with OnExecutionArguments to provide complete context for workflow step execution.
Properties
Name | Description |
---|---|
Id | Gets the unique identifier of the workflow step. |
Key | Gets the unique key identifier for the workflow step. |
TypeCode | Gets the type code that categorizes the workflow step. |
Name | Gets the display name of the workflow step. |
Constructors
Name | Description |
---|---|
StepArguments(id, key, name, typeCode) | Initializes a new instance of the StepArguments class with complete step information. |