共用方式為


DefaultEvents.OnExecutionStatusChanged 方法

This event is raised by a task or container when its execution status changes.

命名空間:  Microsoft.SqlServer.Dts.Runtime
組件:  Microsoft.SqlServer.ManagedDTS (在 Microsoft.SqlServer.ManagedDTS.dll 中)

語法

'宣告
Public Overridable Sub OnExecutionStatusChanged ( _
    exec As Executable, _
    newStatus As DTSExecStatus, _
    ByRef fireAgain As Boolean _
)
'用途
Dim instance As DefaultEvents 
Dim exec As Executable 
Dim newStatus As DTSExecStatus 
Dim fireAgain As Boolean

instance.OnExecutionStatusChanged(exec, _
    newStatus, fireAgain)
public virtual void OnExecutionStatusChanged(
    Executable exec,
    DTSExecStatus newStatus,
    ref bool fireAgain
)
public:
virtual void OnExecutionStatusChanged(
    Executable^ exec, 
    DTSExecStatus newStatus, 
    bool% fireAgain
)
abstract OnExecutionStatusChanged : 
        exec:Executable * 
        newStatus:DTSExecStatus * 
        fireAgain:bool byref -> unit  
override OnExecutionStatusChanged : 
        exec:Executable * 
        newStatus:DTSExecStatus * 
        fireAgain:bool byref -> unit
public function OnExecutionStatusChanged(
    exec : Executable, 
    newStatus : DTSExecStatus, 
    fireAgain : boolean
)

參數

  • fireAgain
    型別:System.Boolean%
    A Boolean that indicates whether this should continue firing or stop firing. A value of true indicates that it should continue firing.

實作

IDTSEvents.OnExecutionStatusChanged(Executable, DTSExecStatus, Boolean%)

備註

The following table shows the values that newStatus will contain:

newStatus

Description

Abend

Task experienced an internal error and terminated execution abnormally.

Completed

Task has completed executing with a success or failed result.

Executing

Task is currently running.

None

Task is idle (default value).

Suspended

Task is currently suspended because of a breakpoint hit.

Validating

Task is currently validating.

請參閱

參考

DefaultEvents 類別

Microsoft.SqlServer.Dts.Runtime 命名空間