public override string Password { get; set; }Public Overrides Property Password As String
Get
Setpublic:
virtual property String^ Password {
String^ get () override;
void set (String^ value) override;
}abstract Password : string with get, set
override Password : string with get, setThis property must be set before a connection with the server is made.
ExFTPConnection ftp = new ExFTPConnection();
ftp.ServerAddress = "my-server-name";
ftp.UserName = "my-username";
ftp.Password = "my-password";
ftp.Connect();
ftp.Close();