Skip to main content

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

NameDescription
IdGets the unique identifier of the workflow step.
KeyGets the unique key identifier for the workflow step.
TypeCodeGets the type code that categorizes the workflow step.
NameGets the display name of the workflow step.

Constructors

NameDescription
StepArguments(id, key, name, typeCode)Initializes a new instance of the StepArguments class with complete step information.