Método PackageUpgradeResult.OnExecutionStatusChanged
Essa API oferece suporte à infraestrutura do SQL Server 2012 e não se destina a ser usada diretamente no seu código.
Occurs when the execution status changes.
Namespace: Microsoft.SqlServer.Dts.Runtime
Assembly: Microsoft.SqlServer.ManagedDTS (em Microsoft.SqlServer.ManagedDTS.dll)
Sintaxe
'Declaração
Public Sub OnExecutionStatusChanged ( _
exec As Executable, _
newStatus As DTSExecStatus, _
ByRef fireAgain As Boolean _
)
'Uso
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
)
Parâmetros
- exec
Tipo: Microsoft.SqlServer.Dts.Runtime.Executable
The task raising the event.
- newStatus
Tipo: Microsoft.SqlServer.Dts.Runtime.DTSExecStatus
The current status of the executable.
- fireAgain
Tipo: System.Boolean%
True if the object should continue firing; otherwise, false.
Implementa
IDTSEvents.OnExecutionStatusChanged(Executable, DTSExecStatus, Boolean%)