Okapi .NET Library

ILog.Warning Method 

 [This is preliminary documentation and subject to change.]

Logs a warning message.

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

Parameters

p_sText
Text of the warning 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(3, 0, p_sText).

See Also

ILog Interface | Okapi.Library.Base Namespace | SetLog