Discuss this help topic in SecureBlackbox Forum

TElSimpleSSHClient.UseInternalSocket

TElSimpleSSHClient     See also     


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


This property specifies if internal socket and Address/Port properties must be used instead of firing OnSend/OnReceive events.

Declaration

[C#]
    bool UseInternalSocket;

[VB.NET]
    Property UseInternalSocket As Boolean

[Pascal]
    property UseInternalSocket: Boolean;

[C++]
    bool get_UseInternalSocket();
    void set_UseInternalSocket(bool Value);

[PHP]
    bool get_UseInternalSocket()
    void set_UseInternalSocket(bool $Value)

[Java]
    boolean getUseInternalSocket();
    void setUseInternalSocket(boolean Value);

Description

    Set this property value to True if you want to use internal socket and Address/Port properties instead of firing OnSend/OnReceive events. Internal socket is blocking and synchronous.
    Default value is True.

See also:     Address     Port     IncomingSpeedLimit     OutgoingSpeedLimit     OnReceive     OnSend    

Discuss this help topic in SecureBlackbox Forum