In fiddler we have a option in Tools -> Options -> Connections -> Bypass Fiddler for URL's that starts with, how to use this option in c#.
currently I'm trying RegistryKey object in c#, but every time when i run fiddler through c# windows application it is overriding it and replacing it with "<-loopback>;",
is this the correct way:
source: https://docs.telerik.com/fiddler/Configure-Fiddler/Tasks/BypassUpstreamProxy
void FiddlerApplication_BeforeRequest(Session oSession) {
if (oSession.HostnameIs("www.example.com")) {
oSession.bypassGateway = true;
}
}