RestSharp RestClient 的默认超时值是多少?

What is default timeout value of RestSharp RestClient?

有人知道 RestSharp RestClient 的默认超时值吗?

RestSharp 在后台使用 HttpWebRequest,default timeout 为 100 秒。

至少某些版本的 RestSharp(我正在查看 106.6.10)在使用异步请求时会使用明确设置的超时值,但不提供默认值。

这是因为:

The Timeout property has no effect on asynchronous requests made with the BeginGetResponse or BeginGetRequestStream method.

(https://docs.microsoft.com/en-us/dotnet/api/system.net.httpwebrequest.timeout?view=netframework-4.8#remarks)