Click or drag to resize

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.JSON
Assembly: Linkar.Functions.Persistent.JSON (in Linkar.Functions.Persistent.JSON.dll) Version: 2.3.1
Syntax
public Task LogoutAsync(
	string customVars = "",
	int receiveTimeout = 0
)

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.JSON.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