I’m referring to the documentation at https://restsharp.dev/v107/#recommended-usage
Do not use one instance of
RestClient
across different API clients.
Our use-case is calling callback URLs received in requests from a client and it looks like re-using a single RestClient
for calling different TCP endpoints in this case works just fine with HttpClient
‘s connection pooling handling multiple connections properly.
So I’m wondering if I’m missing something or just reading it wrong.