Metodo IDTSEvents100.OnPreValidate
Questa API supporta l'infrastruttura SQL Server 2012 e non può essere utilizzata direttamente dal codice.
Called when the actual validation logic of the task starts. This event is raised when the validation of the task host or container begins.
Spazio dei nomi Microsoft.SqlServer.Dts.Runtime.Wrapper
Assembly: Microsoft.SqlServer.DTSRuntimeWrap (in Microsoft.SqlServer.DTSRuntimeWrap.dll)
Sintassi
'Dichiarazione
Sub OnPreValidate ( _
pExec As IDTSExecutable100, _
ByRef pbFireAgain As Boolean _
)
'Utilizzo
Dim instance As IDTSEvents100
Dim pExec As IDTSExecutable100
Dim pbFireAgain As Boolean
instance.OnPreValidate(pExec, pbFireAgain)
void OnPreValidate(
IDTSExecutable100 pExec,
ref bool pbFireAgain
)
void OnPreValidate(
[InAttribute] IDTSExecutable100^ pExec,
bool% pbFireAgain
)
abstract OnPreValidate :
pExec:IDTSExecutable100 *
pbFireAgain:bool byref -> unit
function OnPreValidate(
pExec : IDTSExecutable100,
pbFireAgain : boolean
)
Parametri
- pExec
Tipo: Microsoft.SqlServer.Dts.Runtime.Wrapper.IDTSExecutable100
The task for which this is being called.
- pbFireAgain
Tipo: System.Boolean%
A Boolean that indicates this should continue firing or stop firing. A value of true indicates that it should continue firing.
Osservazioni
For more information, see IDTSEvents.