Open
Description
Is there a way to configure the proxy (e.g. Web, Socks) on a per-request basis?
With CEF, this seems to be possible globally (but per-request may also work). CEF has the notion of a CefRequestContext, which has a SetPreference method that allows you to specify (key,value) pairs. In this case, the key would be "proxy", and the value would be something like "proxyhost:8080".
This would be useful for implementing custom HTTP request routing logic (e.g. similar to PAC files).
Can this capability please be implemented if it does not yet exist? Thank you in advance.