Delegate Logger.LogActionFunction
Defines the log action function.
Namespace: System.Dynamic.ExpandoObject
Assembly: cs.temp.dll.dll
Syntax
public delegate void LogActionFunction(string origin, string level, string message, Dictionary<string, object> parameters);
Parameters
|
System.String
origin
The origin of the message, a class or module name. |
|
System.String
level
The level of the message, 'critical', 'error', 'warning', 'verbose' or 'information'. |
|
System.String
message
The message content. |
|
Dictionary<System.String, System.Object>
parameters
Any parameters that may be useful. |