DefaultEvents.OnPostExecute Method
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.
Namespace: Microsoft.SqlServer.Dts.Runtime
Assembly: Microsoft.SqlServer.ManagedDTS (in Microsoft.SqlServer.ManagedDTS.dll)
Syntax
'Declaration
Public Overridable Sub OnPostExecute ( _
exec As Executable, _
ByRef fireAgain As Boolean _
)
'Usage
Dim instance As DefaultEvents
Dim exec As Executable
Dim fireAgain As Boolean
instance.OnPostExecute(exec, fireAgain)
public virtual void OnPostExecute(
Executable exec,
ref bool fireAgain
)
public:
virtual void OnPostExecute(
Executable^ exec,
bool% fireAgain
)
abstract OnPostExecute :
exec:Executable *
fireAgain:bool byref -> unit
override OnPostExecute :
exec:Executable *
fireAgain:bool byref -> unit
public function OnPostExecute(
exec : Executable,
fireAgain : boolean
)
Parameters
- exec
Type: Microsoft.SqlServer.Dts.Runtime.Executable
The task raising the event.
- fireAgain
Type: System.Boolean%
A Boolean that indicates whether this should continue firing or stop firing. A value of true indicates that it should continue firing.
Implements
See Also