Connection timeout value in seconds


Namespace: rocketsoftware.MVSP
Assembly: RocketMVSP (in RocketMVSP.dll)

Syntax

Visual Basic (Declaration)
Public WriteOnly Property ConnectionTimeout As Integer
C#
public int ConnectionTimeout { set; }
C++
public property int ConnectionTimeout sealed  {
    void set(int value);
}
J#
/** property */
public void set_ConnectionTimeout(int value);
JScript
public function set ConnectionTimeout(value : int);

Property Value

The number of seconds before the connection attempt will timeout. The default value is 10 seconds.

Remarks

The property needs to be set before calling the connect method if you wish to use a value other than the default.

See Also