IDTSEvents100.OnPreValidate(IDTSExecutable100, Boolean) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Called when the actual validation logic of the task starts. This event is raised when the validation of the task host or container begins.
public:
void OnPreValidate(Microsoft::SqlServer::Dts::Runtime::Wrapper::IDTSExecutable100 ^ pExec, bool % pbFireAgain);
[System.Runtime.InteropServices.DispId(2)]
public void OnPreValidate (Microsoft.SqlServer.Dts.Runtime.Wrapper.IDTSExecutable100 pExec, ref bool pbFireAgain);
[<System.Runtime.InteropServices.DispId(2)>]
abstract member OnPreValidate : Microsoft.SqlServer.Dts.Runtime.Wrapper.IDTSExecutable100 * bool -> unit
Public Sub OnPreValidate (pExec As IDTSExecutable100, ByRef pbFireAgain As Boolean)
Parameters
- pExec
- IDTSExecutable100
The task for which this is being called.
- pbFireAgain
- Boolean
A Boolean that indicates this should continue firing or stop firing. A value of true indicates that it should continue firing.
- Attributes
Remarks
For more information, see IDTSEvents.