U r s u s
U r s u s

Reputation: 6978

Is RestSharp thread safe?

After a few failed attempts to post data to a website via REST, I decided to look into using a library for doing that.

RestSharp seemed the obvious option. However, after a bit of digging, I've found this issue.

I couldn't find evidence of any updates regarding this problem neither on the RestSharp google group nor on GitHub.

The issue was reported before the last release, but again I couldn't find out if the issue had been fixed.

Does anyone know if the issue has been fixed?

Upvotes: 4

Views: 5574

Answers (1)

TrueWill
TrueWill

Reputation: 25523

It appears the answer is no. RestClient is not thread safe, at least until this issue is closed:

https://github.com/restsharp/RestSharp/issues/951

Upvotes: 1

Related Questions