Discuss this help topic in SecureBlackbox Forum

TElSSHClient.ClientUserName

TElSSHClient     See also     


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


This property specifies the client's username on client's machine

Declaration

[C#]
    string ClientUserName;

[VB.NET]
    Property ClientUserName As String

[Pascal]
    property ClientUserName : string;

[C++]
    void get_ClientUserName(std::string &OutResult);
    void set_ClientUserName(const std::string &Value);

[PHP]
    string get_ClientUserName()
    void set_ClientUserName(string $Value)

[Java]
    String getClientUserName();
    void setClientUserName(String Value);

Description

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

See also:     ClientHostName     AuthenticationTypes    

Discuss this help topic in SecureBlackbox Forum