PackageUpgradeResult.OnPostExecute 方法
此 API 支持 SQL Server 2012 基础结构,但不能通过代码直接使用。
Called immediately after the execution logic of the task completes. This event is raised by a task or container immediately after it runs.
命名空间: Microsoft.SqlServer.Dts.Runtime
程序集: Microsoft.SqlServer.ManagedDTS(在 Microsoft.SqlServer.ManagedDTS.dll 中)
语法
声明
Public Sub OnPostExecute ( _
exec As Executable, _
ByRef fireAgain As Boolean _
)
用法
Dim instance As PackageUpgradeResult
Dim exec As Executable
Dim fireAgain As Boolean
instance.OnPostExecute(exec, fireAgain)
public void OnPostExecute(
Executable exec,
ref bool fireAgain
)
public:
virtual void OnPostExecute(
Executable^ exec,
bool% fireAgain
) sealed
abstract OnPostExecute :
exec:Executable *
fireAgain:bool byref -> unit
override OnPostExecute :
exec:Executable *
fireAgain:bool byref -> unit
public final function OnPostExecute(
exec : Executable,
fireAgain : boolean
)
参数
- exec
类型:Microsoft.SqlServer.Dts.Runtime.Executable
The task that is to execute next.
- fireAgain
类型:System.Boolean%
True if the object should continue firing; otherwise, false.
实现
IDTSEvents.OnPostExecute(Executable, Boolean%)