Edit

Share via


WorkflowRuntime.WorkflowStarted Event

Definition

Occurs when a workflow instance has been started.

public:
 event EventHandler<System::Workflow::Runtime::WorkflowEventArgs ^> ^ WorkflowStarted;
public event EventHandler<System.Workflow.Runtime.WorkflowEventArgs> WorkflowStarted;
member this.WorkflowStarted : EventHandler<System.Workflow.Runtime.WorkflowEventArgs> 
Public Custom Event WorkflowStarted As EventHandler(Of WorkflowEventArgs) 
Public Event WorkflowStarted As EventHandler(Of WorkflowEventArgs) 

Event Type

Remarks

The workflow run-time engine raises the WorkflowStarted event after the workflow instance is started by scheduling the root activity for execution. For this event, the sender contains the WorkflowRuntime and WorkflowEventArgs contains the WorkflowInstance associated with the event.

For more information about handling events, see Handling and raising events.

Applies to