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

时间:2015-03-03 10:32:55

标签: http timeout restsharp rest-client

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

2 个答案:

答案 0 :(得分:58)

RestSharp正在使用HttpWebRequest,其default timeout为100秒。

答案 1 :(得分:3)

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

这是因为:

Timeout属性对使用BeginGetResponse或BeginGetRequestStream方法发出的异步请求无效。

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