The following code (last line) fails in the latest update (NuGet 111.0)
RestClientOptions options = new RestClientOptions(webserviceUri); options.Authenticator = new JwtAuthenticator(AppInfo.Token); RestClient client = new RestClient(reuseHttpClient, options);
The exception says that the client already sent a request and the options can’t be modified. Is this expected by the latest version or is that an error in the component? What’s the best way to fix it when the token could change while running the application.
Up to version 110.2 this worked like a charm.