edtFTPnet/PRO - Secure FTP component for .NET | Free Trial | Pricing
User-name of account on the server.

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

Syntax

C#
public override string UserName { get; set; }
Visual Basic
Public Overrides Property UserName As String
	Get
	Set
Visual C++
public:
virtual property String^ UserName {
	String^ get () override;
	void set (String^ value) override;
}

Field Value

The user-name of the account the server that will be logged into upon connection.

Remarks

This property must be set before a connection with the server is made.

Examples

The following example illustrates an SFTP client connecting to a server:
 Copy imageCopy
              SecureFTPConnection ftp = new SecureFTPConnection();
              ftp.Protocol = FileTransferProtocol.SFTP;
              ftp.ServerAddress = "my-server-name";
              ftp.UserName = "my-username";
              ftp.Password = "my-password";
              ftp.ServerValidation = SecureFTPServerValidationType.None;
              ftp.Connect();
              ftp.Close();
            

See Also