AddLogLine Delegate

Delegate used to notify about a new line is added to a log by the listener.

Definition

Namespace: OddPrg.Communication
Assembly: OddPrg.Communication.Listeners (in OddPrg.Communication.Listeners.dll) Version: 1.0.0.0 (1.0.0.0)
C#
public delegate void AddLogLine(
	int listenerID,
	DateTime timeStamp,
	string levelPrefix,
	string message
)

Parameters

listenerID  Int32
Identifier of listener that produced this log line
timeStamp  DateTime
Timestmap of log line
levelPrefix  String
Level of the message (C, P, E).
message  String
Message

See Also