Common Logging 2.0 API Reference

AbstractLogger.WriteHandler Delegate

Represents a method responsible for writing a message to the log system.

[Visual Basic]
Protected Delegate Function WriteHandler( _
   ByVal level As LogLevel, _
   ByVal message As Object, _
   ByVal exception As Exception _
)
[C#]
protected delegate void WriteHandler(
   LogLevel level,
   object message,
   Exception exception
);

Requirements

Namespace: Common.Logging.Factory

Assembly: Common.Logging (in Common.Logging.dll)

See Also

Common.Logging.Factory Namespace