Reputation: 1646
I have a restsharp client and request set up like this:
var request = new RestRequest();
request.Method = Method.POST;
request.AddParameter("application/json", jsonBody, ParameterType.RequestBody);
request.OnBeforeDeserialization = resp => { resp.ContentType = "application/json"; };
request.Timeout = -1;
request.ReadWriteTimeout = -1;
var url = $"http://{ipAddress}/api/calculate";
var client = new RestClient();
client.BaseUrl = new Uri(url);
client.Timeout = -1;
client.ReadWriteTimeout = -1;
var response = client.Execute(request);
This request is going to take a while to finish, around 30 minutes. Now, I know that there are more elegant ways of doing this, but, for this request, I need to do it like this.
This RestSharp client and request are executed inside Windows service. When service executes request, it throws TimoutException and request maximum timeout is around 40 seconds.
For some reason, timeout that I set is not working for this case.
Anybody has a solution for this?
Upvotes: 35
Views: 91457
Reputation: 35595
var options = new RestClientOptions("baseURL") {
ThrowOnAnyError = true,
MaxTimeout = 1000 // 1 second - thanks to @Scholtz
};
var client = new RestClient(options);
var options = new RestClientOptions("baseURL") {
ThrowOnAnyError = true,
Timeout = 1000 // 1 second - thanks to @JohnMc
};
var client = new RestClient(options);
to alter the default time out to: 5 seconds - for example - (i.e. 5000 milliseconds):
var client = new RestClient("BaseUrl");
client.Timeout = 5000; // 5000 milliseconds == 5 seconds
Upvotes: 53
Reputation: 2265
You may not be doing what you think by setting the ReadWriteTimeout
value. Your value is ignored so you get the default.
According to this answer What is default timeout value of RestSharp RestClient? RestSharp uses HttpWebRequest
in its implementation.
The timeout property for HttpWebRequest
cannot be negative HttpWebRequest.Timeout Property.
If you look in the RestSharp client code you see this: https://github.com/restsharp/RestSharp/blob/70de357b0b9dfc3926c95d1e69967c7a7cbe874c/RestSharp/RestClient.cs#L452
int readWriteTimeout = request.ReadWriteTimeout > 0
? request.ReadWriteTimeout
: this.ReadWriteTimeout;
if (readWriteTimeout > 0)
{
http.ReadWriteTimeout = readWriteTimeout;
}
Upvotes: 26
Reputation: 10582
Update to RestSharp v106.2.2.
See https://github.com/restsharp/RestSharp/issues/1093
Upvotes: 5