Validate méthode
Verify that the executable will successfully execute by validating all its dependencies and other items before executing it. The component that implements this method is the component that is being validated.
Espace de noms : Microsoft.SqlServer.Dts.Runtime
Assembly : Microsoft.SqlServer.ManagedDTS (dans Microsoft.SqlServer.ManagedDTS.dll)
Syntaxe
'Déclaration
Public MustOverride Function Validate ( _
connections As Connections, _
variables As Variables, _
events As IDTSEvents, _
log As IDTSLogging _
) As DTSExecResult
'Utilisation
Dim instance As Executable
Dim connections As Connections
Dim variables As Variables
Dim events As IDTSEvents
Dim log As IDTSLogging
Dim returnValue As DTSExecResult
returnValue = instance.Validate(connections, _
variables, events, log)
public abstract DTSExecResult Validate(
Connections connections,
Variables variables,
IDTSEvents events,
IDTSLogging log
)
public:
virtual DTSExecResult Validate(
Connections^ connections,
Variables^ variables,
IDTSEvents^ events,
IDTSLogging^ log
) abstract
abstract Validate :
connections:Connections *
variables:Variables *
events:IDTSEvents *
log:IDTSLogging -> DTSExecResult
public abstract function Validate(
connections : Connections,
variables : Variables,
events : IDTSEvents,
log : IDTSLogging
) : DTSExecResult
Paramètres
- connections
Type : Microsoft.SqlServer.Dts.Runtime. . :: . .Connections
A Connections collection.
- variables
Type : Microsoft.SqlServer.Dts.Runtime. . :: . .Variables
A Variables collection.
- events
Type : Microsoft.SqlServer.Dts.Runtime. . :: . .IDTSEvents
An IDTSEvents interface to raise events.
- log
Type : Microsoft.SqlServer.Dts.Runtime. . :: . .IDTSLogging
An IDTSLogging interface.
Valeur de retour
Type : Microsoft.SqlServer.Dts.Runtime. . :: . .DTSExecResult
Returns a value from the DTSExecResult enumeration that indicates the success, failure, or other status from validating the executable.
Notes
The Validate method reviews properties and settings for inaccuracies or incorrect settings. The method does not touch data, or connect to data sources to validate connections. However, it ensures that required fields are populated and contain appropriate values. The fields that are validated differ depending on what object is being validated.
The primary use of Validate is when writing a custom task. The Validate method is called by the SSIS Designer when a task is dropped onto the design surface and again, potentially multiple times, when properties are being set. However, in code, the Validate method on individual objects is not commonly used, as it is recommended that you call the Validate method on the Package when you need to validate objects. However, the method is available on individual objects should you find a unique circumstance where it is needed.
The Validate method is overridden in custom tasks, either for validation of the object when used in the SSIS Designer, or when called by code. For more information on writing the Validate method for a custom task, see Codage d'une tâche personnalisée.
Exemples
The following code example shows how to validate objects using the Validate method of the Package object.
DTSExecResult myresult = pkg.Validate(myPkgConnections, myPkgVariables, myIDTSEvents, myIDTSLogging);
Dim myresult As DTSExecResult = pkg.Validate(myPkgConnections,myPkgVariables,myIDTSEvents, myIDTSLogging)
Voir aussi