Okapi .NET Library

ILog.Message Method 

 [This is preliminary documentation and subject to change.]

Logs a message.

[Visual Basic]
Function Message( _ 
   ByVal p_sText As String _ 
) As Boolean
[C#]
bool Message(
   string p_sText
);
[C++]
bool Message(
   String* p_sText
);
[JScript]
function Message(
   String p_sText
): bool;

Parameters

p_sText
Text of the message.

Return Value

True if the process is to be continued, false if the user has cancelled the process.

Remarks

Calling this method is the same as calling Log(2, 0, p_sText).

See Also

ILog Interface | Okapi.Library.Base Namespace | SetLog