DefaultEvents.OnPreValidate(Executable, 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.
This method is called when the validation logic of the task starts. This event is raised when the validation of the task host or container begins.
public:
virtual void OnPreValidate(Microsoft::SqlServer::Dts::Runtime::Executable ^ exec, bool % fireAgain);
public virtual void OnPreValidate (Microsoft.SqlServer.Dts.Runtime.Executable exec, ref bool fireAgain);
abstract member OnPreValidate : Microsoft.SqlServer.Dts.Runtime.Executable * bool -> unit
override this.OnPreValidate : Microsoft.SqlServer.Dts.Runtime.Executable * bool -> unit
Public Overridable Sub OnPreValidate (exec As Executable, ByRef fireAgain As Boolean)
Parameters
- exec
- Executable
The task that this is being called on.
- fireAgain
- Boolean
A Boolean that indicates whether this should continue firing or stop firing. A value of true indicates that it should continue firing.
Implements
Remarks
The calls to OnPreValidate and OnPostValidate identify the validation boundaries of a task.