URLMonInteropSetProxyInProcess Method |
Sets the proxy for the current process to the specified list. See http://msdn.microsoft.com/en-us/library/aa383996(VS.85).aspx
Namespace: FiddlerAssembly: FiddlerCore4 (in FiddlerCore4.dll) Version: 4.6.2.0
Syntax public static void SetProxyInProcess(
string sProxy,
string sBypassList
)
Public Shared Sub SetProxyInProcess (
sProxy As String,
sBypassList As String
)
public:
static void SetProxyInProcess(
String^ sProxy,
String^ sBypassList
)
Parameters
- sProxy
- Type: SystemString
e.g. "127.0.0.1:8888" or "http=insecProxy:80;https=secProxy:444" - sBypassList
- Type: SystemString
Semi-colon delimted list of hosts to bypass proxy; use <local> to bypass for Intranet
See Also