Discuss this help topic in SecureBlackbox Forum

TElSSHBaseClient.Password

TElSSHBaseClient     See also     


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


Specifies 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 opening the SSH connection. If provided password is invalid, the OnAuthenticationFailed event is fired with AuthenticationType parameter set to SSH_AUTH_TYPE_PASSWORD, and the connection is closed.

See also:     Username     RequestPasswordChange     OnAuthenticationFailed     OnPasswordChangeRequest    

Discuss this help topic in SecureBlackbox Forum