Common Logging 2.0 API Reference

FormatMessageHandler Delegate

The type of method that is passed into e.g. Debug and allows the callback method to "submit" it's message to the underlying output system.

[Visual Basic]
Public Delegate Function FormatMessageHandler( _
   ByVal format As String, _
   ParamArray args As Object _
)
[C#]
public delegate string FormatMessageHandler(
   string format,
   params object[] args
);

Parameters

format
the format argument as in Format
args
the argument list as in Format

Requirements

Namespace: Common.Logging

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

See Also

Common.Logging Namespace | ILog