Метод IDTSEvents100.OnExecutionStatusChanged
Этот API-интерфейс поддерживает инфраструктуру SQL Server 2012 и не предназначен для использования непосредственно из кода.
Called by a task or container when its execution status changes.
Пространство имен: Microsoft.SqlServer.Dts.Runtime.Wrapper
Сборка: Microsoft.SqlServer.DTSRuntimeWrap (в Microsoft.SqlServer.DTSRuntimeWrap.dll)
Синтаксис
'Декларация
Sub OnExecutionStatusChanged ( _
pExec As IDTSExecutable100, _
newStatus As DTSExecStatus, _
<OutAttribute> ByRef pbFireAgain As Boolean _
)
'Применение
Dim instance As IDTSEvents100
Dim pExec As IDTSExecutable100
Dim newStatus As DTSExecStatus
Dim pbFireAgain As Boolean
instance.OnExecutionStatusChanged(pExec, _
newStatus, pbFireAgain)
void OnExecutionStatusChanged(
IDTSExecutable100 pExec,
DTSExecStatus newStatus,
out bool pbFireAgain
)
void OnExecutionStatusChanged(
[InAttribute] IDTSExecutable100^ pExec,
[InAttribute] DTSExecStatus newStatus,
[InAttribute] [OutAttribute] bool% pbFireAgain
)
abstract OnExecutionStatusChanged :
pExec:IDTSExecutable100 *
newStatus:DTSExecStatus *
pbFireAgain:bool byref -> unit
function OnExecutionStatusChanged(
pExec : IDTSExecutable100,
newStatus : DTSExecStatus,
pbFireAgain : boolean
)
Параметры
- pExec
Тип: Microsoft.SqlServer.Dts.Runtime.Wrapper.IDTSExecutable100
The task raising the event.
- newStatus
Тип: Microsoft.SqlServer.Dts.Runtime.Wrapper.DTSExecStatus
The current status of the executable.
- pbFireAgain
Тип: System.Boolean%
A Boolean that indicates this should continue firing or stop firing. A value of true indicates that it should continue firing.
Замечания
For more information, see IDTSEvents.