Discuss this help topic in SecureBlackbox Forum

TElSSHClient.ClientHostName

TElSSHClient     See also     


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


This property specifies the client's machine name

Declaration

[C#]
    string ClientHostName;

[VB.NET]
    Property ClientHostName As String

[Pascal]
    property ClientHostName : string;

[C++]
    void get_ClientHostName(std::string &OutResult);
    void set_ClientHostName(const std::string &Value);

[PHP]
    string get_ClientHostName()
    void set_ClientHostName(string $Value)

[Java]
    String getClientHostName();
    void setClientHostName(String Value);

Description

    Set this property before calling the Open method to specify the user's machine name. User's host name is required by some of the authentication types. You haven't to set this property if you're using only password authentication (most commonly used).

See also:     ClientUserName     AuthenticationTypes    

Discuss this help topic in SecureBlackbox Forum