OnExecuteEventArguments
Provides event arguments for the execution of workflow steps.
The OnExecuteEventArguments class extends OnExecutionArguments to provide specialized event arguments for workflow step execution. It includes information about the step being executed, the process ID, session starter object status, and execution context. This class is used to pass execution-specific information to event handlers during workflow step processing.
Properties
| Name | Description |
|---|---|
| Context | Gets the business context in which the workflow step is being executed. |
| Step | Gets the arguments containing information about the current workflow step. |
| ProcessId | Gets the unique identifier of the workflow process instance. |
| IsSessionStarterObject | Gets whether this execution is for a session starter object. |
Constructors
| Name | Description |
|---|---|
| OnExecuteEventArguments(step, processId, isSessionStarterObject, context) | Initializes a new instance of the OnExecuteEventArguments class with complete workflow execution information. |