Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Diese API unterstützt die SQL Server 2012-Infrastruktur und ist nicht zur direkten Verwendung im Code bestimmt.
Called immediately after the validation logic of the task completes. This event is raised by a task after the task is validated.
Namespace: Microsoft.SqlServer.Dts.Runtime.Wrapper
Assembly: Microsoft.SqlServer.DTSRuntimeWrap (in Microsoft.SqlServer.DTSRuntimeWrap.dll)
Syntax
'Declaration
Sub OnPostValidate ( _
pExec As IDTSExecutable100, _
ByRef pbFireAgain As Boolean _
)
'Usage
Dim instance As IDTSEvents100
Dim pExec As IDTSExecutable100
Dim pbFireAgain As Boolean
instance.OnPostValidate(pExec, pbFireAgain)
void OnPostValidate(
IDTSExecutable100 pExec,
ref bool pbFireAgain
)
void OnPostValidate(
[InAttribute] IDTSExecutable100^ pExec,
bool% pbFireAgain
)
abstract OnPostValidate :
pExec:IDTSExecutable100 *
pbFireAgain:bool byref -> unit
function OnPostValidate(
pExec : IDTSExecutable100,
pbFireAgain : boolean
)
Parameter
- pExec
Typ: Microsoft.SqlServer.Dts.Runtime.Wrapper.IDTSExecutable100
The task raising the event.
- pbFireAgain
Typ: System.Boolean%
A Boolean that indicates this should continue firing or stop firing. A value of true indicates that it should continue firing.
Hinweise
For more information, see IDTSEvents.