Discuss this help topic in SecureBlackbox Forum

TElSimpleSFTPClient.UseInternalSocket

TElSimpleSFTPClient     See also     


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


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 synchronous and blocking.
    Default value is True.

See also:     Address     Port     IncomingSpeedLimit     OutgoingSpeedLimit     OnReceive     OnSend    

Discuss this help topic in SecureBlackbox Forum