edtFTPnet/PRO - Secure FTP component for .NET | Free Trial | Pricing
Called when the client has logged in.

Namespace: EnterpriseDT.Net.Ftp
Assembly: edtFTPnetPRO (in edtFTPnetPRO.dll) Version: 9.4.0.40

Syntax

C#
protected virtual void OnLoggedIn(
	string userName,
	string password,
	bool hasLoggedIn
)
Visual Basic
Protected Overridable Sub OnLoggedIn ( _
	userName As String, _
	password As String, _
	hasLoggedIn As Boolean _
)
Visual C++
protected:
virtual void OnLoggedIn(
	String^ userName, 
	String^ password, 
	bool hasLoggedIn
)

Parameters

userName
Type: System..::..String
User-name of account.
password
Type: System..::..String
Password of account.
hasLoggedIn
Type: System..::..Boolean
true if the client logged in successfully.

See Also