Discuss this help topic in SecureBlackbox Forum

TElSimpleSSHClient.Password

TElSimpleSSHClient     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Specifies the user's password on the server

Declaration

[C#]
    string Password;

[VB.NET]
    Property Password As String

[Pascal]
    property Password : string;

[C++]
    void get_Password(std::string &OutResult);
    void set_Password(const std::string &Value);

[PHP]
    string get_Password()
    void set_Password(string $Value)

[Java]
    String getPassword();
    void setPassword(String Value);

Description

    Set this property before calling the Open method. It should contain the user's password. If the password is invalid, the OnAuthenticationFailed with AuthenticationType parameter set to SSH_AUTH_TYPE_PASSWORD will be fired and the connection will be closed.

See also:     Username     RequestPasswordChange     OnPasswordChangeRequest    

Discuss this help topic in SecureBlackbox Forum