OnNewEventConfiguration

_ITcEventLogEvents

This event method is called on all clients that implement and connect this event interface when all active events are cleared. This methods is called whenever the ITcEventLog::Reset Method was called and any Eventformatter has been reinitialized. The method is not called when ITcEventLog::Reset was called but no Formatter was reloaded.

HRESULT OnNewEventConfiguration();

Parameters

S_OK

Function was successfully called

C# sample code

using TCEVENTLOGGERLib;
. . .
TcEventLog tcEventLogger = new TcEventLog();
tcEventLogger.OnNewEventConfiguration += new
_ITcEventLogEvents_OnNewEventConfigurationEventHandler(tcEventLogger_OnNewEventConfiguration);

. . .
void tcEventLogger_OnNewEventConfiguration()
{
   Console.WriteLine("tcEventLogger_OnNewEventConfiguration");
}