IDTSEvents100.OnPostExecute(IDTSExecutable100, Boolean) Method

Definition

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

public:
 void OnPostExecute(Microsoft::SqlServer::Dts::Runtime::Wrapper::IDTSExecutable100 ^ pExec, bool % pbFireAgain);
[System.Runtime.InteropServices.DispId(1)]
public void OnPostExecute (Microsoft.SqlServer.Dts.Runtime.Wrapper.IDTSExecutable100 pExec, ref bool pbFireAgain);
[<System.Runtime.InteropServices.DispId(1)>]
abstract member OnPostExecute : Microsoft.SqlServer.Dts.Runtime.Wrapper.IDTSExecutable100 * bool -> unit
Public Sub OnPostExecute (pExec As IDTSExecutable100, ByRef pbFireAgain As Boolean)

Parameters

pExec
IDTSExecutable100

The task that is to execute next.

pbFireAgain
Boolean

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

Attributes

Remarks

For more information, see IDTSEvents.

Applies to