Initialize Method
See Also 
SourceCode.ProjectSystem Namespace > ProjectLogger Class : Initialize Method



eventSource
The available events that a logger can subscribe to.

Glossary Item Box

When overridden in a derived class, subscribes the logger to specific events.

Syntax

Visual Basic (Declaration) 
Public Overrides NotOverridable Sub Initialize( _
   ByVal eventSource As IEventSource _
) 
Visual Basic (Usage)Copy Code
Dim instance As ProjectLogger
Dim eventSource As IEventSource
 
instance.Initialize(eventSource)
C# 
public override void Initialize( 
   IEventSource eventSource
)
C++/CLI 
public:
void Initialize( 
   IEventSource^ eventSource
) override 

Parameters

eventSource
The available events that a logger can subscribe to.

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also