Logs in an user on the current machine.

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

Syntax

C#
public void LoginAsync(
	string username,
	string password,
	LoginDoneDelegate loginDone,
	Object userState
)
Visual Basic
Public Sub LoginAsync ( _
	username As String, _
	password As String, _
	loginDone As LoginDoneDelegate, _
	userState As Object _
)
JScript
public function LoginAsync(
	username : String, 
	password : String, 
	loginDone : LoginDoneDelegate, 
	userState : Object
)

Parameters

username
Type: System..::..String
The user name.
password
Type: System..::..String
Password.
loginDone
Type: Ico.Fwx.ClientWrapper..::..LoginDoneDelegate
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