I've downloaded the latest version of RestSharp v107. My local machine has multiple IP addresses. Using an older version of RestSharp, I was able to choose which IP address to use using this code:
client.ConfigureWebRequest(req => { req.ServicePoint.BindIPEndPointDelegate = (servicePoint, remoteEndPoint, retryCount) => new IPEndPoint("192.25.25.25", 0); });
I can't seem to figure out how to accomplish this with the new RestSharp. Is it even possible?
I've searched the internet/documentation and explored the intellisense. I couldn't figure any way to change the IP address.