Hi Brian,
Since RestSharp v111, the MaxTimeout property was removed from RestClientOptions. If you want to configure timeouts now, you should either set it directly on the RestClient instance or on the RestRequest.Timeout. For example:
Or per request:
So in short:
MaxTimeout no longer exists in v111.
Use Timeout on RestClient or RestRequest instead.