ReceiveTimeout

The ReceiveTimeout property returns or sets the timeout to receive a reply to the HTTP request.  If a reply has not been completely received before the timeout then the request will be terminated. When this language extension is created it will initialize this value to what is configured in the data connection configuration.

Group:  Web Object

Syntax:  nValue = oWeb.ReceiveTimeout

Alternate:  oWeb.ReceiveTimeout = nValue

nValue        (Long) the number of milliseconds the system will wait for a connection

Example:

Dim oWeb As Web

Dim nTimeout As Long

nTimeout = oWeb.ReceiveTimeout

oWeb.ReceiveTimeout = 20000