Skip to content

Instantly share code, notes, and snippets.

@stephen-james
Created October 29, 2014 16:47
Show Gist options
  • Select an option

  • Save stephen-james/1149e7793e742c2532a7 to your computer and use it in GitHub Desktop.

Select an option

Save stephen-james/1149e7793e742c2532a7 to your computer and use it in GitHub Desktop.
fiddler proxy for server requests from app
protected void Application_Start()
{
WebRequest.DefaultWebProxy = new WebProxy("127.0.0.1", 8888);
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment