Discuss this help topic in SecureBlackbox Forum

TElSSHBaseClient.UseInternalSocket

TElSSHBaseClient     See also     


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


Specifies whether internal socket and Address/Port properties must be used instead of firing the 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 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. The default value is True.

See also:     Address     Port    

Discuss this help topic in SecureBlackbox Forum