DefaultEvents.OnPostExecute(Executable, Boolean) Method

Definition

This method is called immediately after the execution logic of the task completes. This event is raised by a task or container immediately after it runs.

public:
 virtual void OnPostExecute(Microsoft::SqlServer::Dts::Runtime::Executable ^ exec, bool % fireAgain);
public virtual void OnPostExecute (Microsoft.SqlServer.Dts.Runtime.Executable exec, ref bool fireAgain);
abstract member OnPostExecute : Microsoft.SqlServer.Dts.Runtime.Executable * bool -> unit
override this.OnPostExecute : Microsoft.SqlServer.Dts.Runtime.Executable * bool -> unit
Public Overridable Sub OnPostExecute (exec As Executable, ByRef fireAgain As Boolean)

Parameters

exec
Executable

The task raising the event.

fireAgain
Boolean

A Boolean that indicates whether this should continue firing or stop firing. A value of true indicates that it should continue firing.

Implements

Applies to