Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
This API supports the SQL Server 2012 infrastructure and is not intended to be used directly from your code.
Occurs when the execution status changes.
Namespace: Microsoft.SqlServer.Dts.Runtime
Assembly: Microsoft.SqlServer.ManagedDTS (in Microsoft.SqlServer.ManagedDTS.dll)
Syntax
'Declaration
Public Sub OnExecutionStatusChanged ( _
exec As Executable, _
newStatus As DTSExecStatus, _
ByRef fireAgain As Boolean _
)
'Usage
Dim instance As PackageUpgradeResult
Dim exec As Executable
Dim newStatus As DTSExecStatus
Dim fireAgain As Boolean
instance.OnExecutionStatusChanged(exec, _
newStatus, fireAgain)
public void OnExecutionStatusChanged(
Executable exec,
DTSExecStatus newStatus,
ref bool fireAgain
)
public:
virtual void OnExecutionStatusChanged(
Executable^ exec,
DTSExecStatus newStatus,
bool% fireAgain
) sealed
abstract OnExecutionStatusChanged :
exec:Executable *
newStatus:DTSExecStatus *
fireAgain:bool byref -> unit
override OnExecutionStatusChanged :
exec:Executable *
newStatus:DTSExecStatus *
fireAgain:bool byref -> unit
public final function OnExecutionStatusChanged(
exec : Executable,
newStatus : DTSExecStatus,
fireAgain : boolean
)
Parameters
- exec
Type: Microsoft.SqlServer.Dts.Runtime.Executable
The task raising the event.
- newStatus
Type: Microsoft.SqlServer.Dts.Runtime.DTSExecStatus
The current status of the executable.
- fireAgain
Type: System.Boolean%
True if the object should continue firing; otherwise, false.
Implements
IDTSEvents.OnExecutionStatusChanged(Executable, DTSExecStatus, Boolean%)