Writes an informational message into the log.
Namespace: Landis.CoreAssembly: Landis.Core (in Landis.Core.dll) Version: 6.1.5452.26346
Syntaxvoid Info(
string message,
params Object[] mesgArgs
)
Sub Info (
message As String,
ParamArray mesgArgs As Object()
)
void Info(
String^ message,
... array<Object^>^ mesgArgs
)
abstract Info :
message : string *
mesgArgs : Object[] -> unit
Parameters
- message
- Type: SystemString
Message to write into the log. It may contain placeholders for
optional arguments using the "{n}" notation used by the
System.String.Format method.
- mesgArgs
- Type: SystemObject
Optional arguments for the message.
See Also