The default timeout value for HttpRequest
is 60000 milliseconds (60 seconds).
- Min value is
1
, but we strongly discourage to use such a small value, which can lead to often timeout exceptions.
- Max value is
int.MaxValue
.
- Values
-1
and 0
means infinity (the request does not timeout).
Thank you for pointing to this. We will add it to the documentation.