Password of account on the server.
The password of the account the FTP server that will be logged into upon connection.
>This property must be set before a connection with the server is made.
FTPConnection ftp = new FTPConnection(); ftp.ServerAddress = "my-server-name"; ftp.UserName = "my-username"; ftp.Password = "my-password"; ftp.Connect(); ftp.Close();