InitializeTask méthode
Initializes the properties associated with the task. This method is called by the runtime and is not used in code.
Espace de noms : Microsoft.SqlServer.Dts.Tasks.TransferLoginsTask
Assembly : Microsoft.SqlServer.TransferLoginsTask (dans Microsoft.SqlServer.TransferLoginsTask.dll)
Syntaxe
'Déclaration
Public Overrides Sub InitializeTask ( _
connections As Connections, _
variableDispenser As VariableDispenser, _
events As IDTSInfoEvents, _
log As IDTSLogging, _
eventInfos As EventInfos, _
logEntryInfos As LogEntryInfos, _
refTracker As ObjectReferenceTracker _
)
'Utilisation
Dim instance As TransferLoginsTask
Dim connections As Connections
Dim variableDispenser As VariableDispenser
Dim events As IDTSInfoEvents
Dim log As IDTSLogging
Dim eventInfos As EventInfos
Dim logEntryInfos As LogEntryInfos
Dim refTracker As ObjectReferenceTracker
instance.InitializeTask(connections, _
variableDispenser, events, log, eventInfos, _
logEntryInfos, refTracker)
public override void InitializeTask(
Connections connections,
VariableDispenser variableDispenser,
IDTSInfoEvents events,
IDTSLogging log,
EventInfos eventInfos,
LogEntryInfos logEntryInfos,
ObjectReferenceTracker refTracker
)
public:
virtual void InitializeTask(
Connections^ connections,
VariableDispenser^ variableDispenser,
IDTSInfoEvents^ events,
IDTSLogging^ log,
EventInfos^ eventInfos,
LogEntryInfos^ logEntryInfos,
ObjectReferenceTracker^ refTracker
) override
abstract InitializeTask :
connections:Connections *
variableDispenser:VariableDispenser *
events:IDTSInfoEvents *
log:IDTSLogging *
eventInfos:EventInfos *
logEntryInfos:LogEntryInfos *
refTracker:ObjectReferenceTracker -> unit
override InitializeTask :
connections:Connections *
variableDispenser:VariableDispenser *
events:IDTSInfoEvents *
log:IDTSLogging *
eventInfos:EventInfos *
logEntryInfos:LogEntryInfos *
refTracker:ObjectReferenceTracker -> unit
public override function InitializeTask(
connections : Connections,
variableDispenser : VariableDispenser,
events : IDTSInfoEvents,
log : IDTSLogging,
eventInfos : EventInfos,
logEntryInfos : LogEntryInfos,
refTracker : ObjectReferenceTracker
)
Paramètres
- connections
Type : Microsoft.SqlServer.Dts.Runtime. . :: . .Connections
A collection of connections used by the task.
- variableDispenser
Type : Microsoft.SqlServer.Dts.Runtime. . :: . .VariableDispenser
A VariableDispenser object for locking variables.
- events
Type : Microsoft.SqlServer.Dts.Runtime. . :: . .IDTSInfoEvents
An object that implements the IDTSInfoEvents interface.
- log
Type : Microsoft.SqlServer.Dts.Runtime. . :: . .IDTSLogging
An object that implements the IDTSLogging interface.
- eventInfos
Type : Microsoft.SqlServer.Dts.Runtime. . :: . .EventInfos
A collection that contains events to be raised during execution of the task.
- logEntryInfos
Type : Microsoft.SqlServer.Dts.Runtime. . :: . .LogEntryInfos
A collection of log entries.
- refTracker
Type : Microsoft.SqlServer.Dts.Runtime. . :: . .ObjectReferenceTracker
An object reference tracker.
Notes
This method is used to set the log events of the TransferLoginsTask and all other stock tasks.
The run-time engine calls InitializeTask immediately after the task is created—before validation, execution, or persistence operations.