| LinkarClientLogout Method |
Linkar Framework for .NET and Core
Closes the communication with the server, that previously has been opened with a Login function, synchronously only.
Namespace: Linkar.Functions.PersistentAssembly: Linkar.Functions.Persistent (in Linkar.Functions.Persistent.dll) Version: 2.3.1
Syntax public void Logout(
string customVars = "",
int receiveTimeout = 0
)
Public Sub Logout (
Optional customVars As String = "",
Optional receiveTimeout As Integer = 0
)
public:
void Logout(
String^ customVars = L"",
int receiveTimeout = 0
)
member Logout :
?customVars : string *
?receiveTimeout : int
(* Defaults:
let _customVars = defaultArg customVars ""
let _receiveTimeout = defaultArg receiveTimeout 0
*)
-> unit
Parameters
- customVars String (Optional)
- Free text sent to the database allows management of additional behaviours in SUB.LK.MAIN.CONTROL.CUSTOM, which is called when this parameter is set.
- receiveTimeout Int32 (Optional)
- Maximum time in seconds that the client will wait for a response from the server. Default = 0 to wait indefinitely.
Remarks
Logout is actually a "virtual" operation which disposes the current Client Session ID. No DBMS logout is performed.
See Also