| LinkarClientLogoutAsync Method |
Linkar Framework for .NET and Core
Closes the communication with the server, that previously has been opened with a Login function, in a asynchronous way.
Namespace: Linkar.Functions.Persistent.MVAssembly: Linkar.Functions.Persistent.MV (in Linkar.Functions.Persistent.MV.dll) Version: 2.3.1
Syntax public Task LogoutAsync(
string customVars = "",
int receiveTimeout = 0
)
Public Function LogoutAsync (
Optional customVars As String = "",
Optional receiveTimeout As Integer = 0
) As Task
public:
Task^ LogoutAsync(
String^ customVars = L"",
int receiveTimeout = 0
)
member LogoutAsync :
?customVars : string *
?receiveTimeout : int
(* Defaults:
let _customVars = defaultArg customVars ""
let _receiveTimeout = defaultArg receiveTimeout 0
*)
-> Task
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.
Return Value
Task[Missing <returns> documentation for "M:Linkar.Functions.Persistent.MV.LinkarClient.LogoutAsync(System.String,System.Int32)"]
Remarks
Logout is actually a "virtual" operation which disposes the current Client Session ID. No DBMS logout is performed.
See Also