Logs out the specified user on the current machine. There can be other users logged in below the current user, and this function allows to log them out wihout affecting the top-most user.

Namespace: Ico.Fwx.ClientWrapper
Assembly: IcoFwxClientWrapper (in IcoFwxClientWrapper.dll) Version: 10.97.212.0 (10.97.212.00)

Syntax

C#
public void LogoutAsync(
	string username,
	string password,
	LogoutDoneDelegate logoutDone,
	Object userState
)
Visual Basic
Public Sub LogoutAsync ( _
	username As String, _
	password As String, _
	logoutDone As LogoutDoneDelegate, _
	userState As Object _
)
JScript
public function LogoutAsync(
	username : String, 
	password : String, 
	logoutDone : LogoutDoneDelegate, 
	userState : Object
)

Parameters

username
Type: System..::..String
The user name. If empty, the server logs out the top-most user.
password
Type: System..::..String
Password. Only necessary if the user requires a password to log out.
logoutDone
Type: Ico.Fwx.ClientWrapper..::..LogoutDoneDelegate
An optional callback with the result of the operation. If the asynchronous function is called from an UI thread, the callback will arrive also on the UI thread.
userState
Type: System..::..Object
An optional user object.

See Also