Password of account on the server.
Namespace: EnterpriseDT.Net.FtpAssembly: edtFTPnetPRO (in edtFTPnetPRO.dll) Version: 9.4.0.40
Syntax
| C# |
|---|
public override string Password { get; set; } |
| Visual Basic |
|---|
Public Overrides Property Password As String Get Set |
| Visual C++ |
|---|
public: virtual property String^ Password { String^ get () override; void set (String^ value) override; } |
Field Value
The password of the account the FTP 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 FTP client
connecting to a server:
ExFTPConnection ftp = new ExFTPConnection();
ftp.ServerAddress = "my-server-name";
ftp.UserName = "my-username";
ftp.Password = "my-password";
ftp.Connect();
ftp.Close();
| |