Gets or sets the length of time in milliseconds before the request times out
(specify -1 or 0 to indicate that the request does not time out; minimal value is 1000).
Namespace:
Rebex.Net
Assembly:
Rebex.Http (in Rebex.Http.dll)
Syntax
Visual Basic |
---|
Public Property Timeout As Integer Get Set |
C# |
---|
public int Timeout { get; set; } |
Field Value
The length of time, in milliseconds, until the operation times out, or the value -1 or 0 to indicate that the request does not time out. Default is 60000 (60 seconds). Minimal value is 1000 (1 second).Remarks
The internal timeout counter is reset every time data is sent or received from to server. This also means that data transfers only time out after x milliseconds of inactivity, not after x milliseconds from the start of the transfer.