Okapi .NET Library

ILog.SetLog Method 

 [This is preliminary documentation and subject to change.]

Log an entry in the log or query the user's feedback.

[Visual Basic]
Function SetLog( _ 
   ByVal p_nType As Integer, _ 
   ByVal p_nValue As Integer, _ 
   ByVal p_sValue As String _ 
) As Boolean
[C#]
bool SetLog(
   int p_nType,
   int p_nValue,
   string p_sValue
);
[C++]
bool SetLog(
   int p_nType,
   int p_nValue,
   String* p_sValue
);
[JScript]
function SetLog(
   int p_nType,
   int p_nValue,
   String p_sValue
): bool;

Parameters

p_nType
Type of action to perform. The value must be one of the LogType values.
p_nValue
Numeric parameter. The value depends on the type of action to perform.
p_sValue
String parameter. The value depends on the type of action to perform.

Return Value

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

See Also

ILog Interface | Okapi.Library.Base Namespace