LogProviderBase.InitializeLogProvider Method

Called when the log provider is added to a package.

Namespace:  Microsoft.SqlServer.Dts.Runtime
Assembly:  Microsoft.SqlServer.ManagedDTS (in Microsoft.SqlServer.ManagedDTS.dll)

Syntax

'Declaration
Public Overridable Sub InitializeLogProvider ( _
    connections As Connections, _
    events As IDTSInfoEvents, _
    refTracker As ObjectReferenceTracker _
)
'Usage
Dim instance As LogProviderBase
Dim connections As Connections
Dim events As IDTSInfoEvents
Dim refTracker As ObjectReferenceTracker

instance.InitializeLogProvider(connections, _
    events, refTracker)
public virtual void InitializeLogProvider(
    Connections connections,
    IDTSInfoEvents events,
    ObjectReferenceTracker refTracker
)
public:
virtual void InitializeLogProvider(
    Connections^ connections, 
    IDTSInfoEvents^ events, 
    ObjectReferenceTracker^ refTracker
)
abstract InitializeLogProvider : 
        connections:Connections * 
        events:IDTSInfoEvents * 
        refTracker:ObjectReferenceTracker -> unit 
override InitializeLogProvider : 
        connections:Connections * 
        events:IDTSInfoEvents * 
        refTracker:ObjectReferenceTracker -> unit 
public function InitializeLogProvider(
    connections : Connections, 
    events : IDTSInfoEvents, 
    refTracker : ObjectReferenceTracker
)

Parameters

Remarks

The InitializeLogProvider method is called when a log provider is added to a package, or when a package is loaded that contains the log provider.

You use this method to store the Connections and DesignEvents properties of the package in member variables so they can be used later.