I'm using Flurl to consume an API in my application and I have a question about proxies. The thing is that I want the user to be able to set the proxy if necessary after startup, is that possible with Flurl?
I found this, but that's recommending that you only call on startup so as far as I can tell you can't really change it after the fact. I also found this but that is separating out different requests to use different proxies which isn't what I need either.
Basically I want it to default to no proxy at first like it does and use that for all requests. Then sometime later if the user sets up the proxy and enters the data I want to be able to set the proxy for Flurl and have it use that for all requests thereafter.
Is there a way to do this?