Discuss this help topic in SecureBlackbox Forum

TElSSHCustomForwarding.SocketTimeout

TElSSHCustomForwarding     


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


Timeout for socket operations.

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

    Specifies the maximum time of inactivity after which socket operation is cancelled and is considered expired.
    If the connect, read or write attempt to the socket is unsuccessful for the specified number of milliseconds, the operation is cancelled with the timeout error.
    If this property value is 0, the operation will never become expired.
    The default value is 0.

Discuss this help topic in SecureBlackbox Forum