Discuss this help topic in SecureBlackbox Forum

TElSimpleFTPSClient.SocketTimeout

TElSimpleFTPSClient     See also     


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


Specifies a time period during which the client will try to establish socket connection to server

Declaration

[C#]
    int SocketTimeout;

[VB.NET]
    Property SocketTimeout As Integer

[Pascal]
    property SocketTimeout: Integer;

[C++]
    int32_t get_SocketTimeout();
    void set_SocketTimeout(int32_t Value);

[PHP]
    integer get_SocketTimeout()
    void set_SocketTimeout(integer $Value)

[Java]
    int getSocketTimeout();
    void setSocketTimeout(int Value);

Description

    Use this property to specify a timeout (in milliseconds) for socket connections. This property is used for both control and data connections.
    If this property value is 0, the operation will expire after system-default timeout (which is 2 hrs 8 min for TCP stack).
    Default value is 60000 ms (1 min).

See also:     ListenTimeout     TransferTimeout    

Discuss this help topic in SecureBlackbox Forum