DataSource.NET
Log Method (level, category, message, messageParameters)
NamespacesCaplin.LoggingILoggerLog(LogLevels, String, String, array<Object>[]()[])
Logs a single message with supplied parameter values substituted into it.
Declaration Syntax
C#Visual BasicVisual C++
void Log(
	LogLevels level,
	string category,
	string message,
	params Object[] messageParameters
)
Sub Log ( _
	level As LogLevels, _
	category As String, _
	message As String, _
	ParamArray messageParameters As Object() _
)
void Log(
	LogLevels level, 
	String^ category, 
	String^ message, 
	... array<Object^>^ messageParameters
)
Parameters
level (LogLevels)
The logging level, indicating the severity of the message to be logged.
category (String)
The log category. This identifies the type of message being logged or the component from which the message originates.
message (String)
The message to be logged.
messageParameters (array< Object >[]()[])
One or more message parameter values that are to be substituted into message.
Remarks
The message can contain C# format specifiers that correspond to the message parameters. The method should substitute the message parameters into the supplied message (using Format(String, array<Object>[]()[])), to produce a readable message that is then logged.

Assembly: DataSource.NET (Module: DataSource.NET) Version: 6.0.12.814 (6.0.12.0814)