This method initializes the analyzer with startup parameters and creating the TCP/SOAP
connection if a view is in the configuration. To add initializing code it is possible to
override this function.
Namespace:
EPiServer.Log.CoreAssembly: EPiServer.Log.Core (in EPiServer.Log.Core.dll) Version: 6.0.530.0
Syntax
| C# |
|---|
public virtual void Initialize( XmlNode node ) |
Parameters
- node
- Type: System.Xml..::.XmlNode
The base node of the analyzers configuration.
Examples
Adding own initializing code.
CopyC#
public override void Initialize( System.Xml.XmlNode node ) { // The base has to be initialized so the Config will work base.Initialize( node ); // TODO: Put your initialize code here }