Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6672007
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T03:27:27+00:00 2026-05-26T03:27:27+00:00

I want to set a proxy in C#.NET, the thing is, how would I

  • 0

I want to set a proxy in C#.NET, the thing is, how would I make it so that all web requests and web browser controls connect through the proxy? Like a SOCKS proxy?

I need it to apply to any web browser controls or any web requests. It would be best if I could just set it so all outgoing requests from the user’s machine is sent through the proxy.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T03:27:27+00:00Added an answer on May 26, 2026 at 3:27 am

    By default, your C# code will use the system proxy set in your IE connection settings.

    If you want to be explicit, you can do it via config under System.net:

    <defaultProxy useDefaultCredentials="true">
        <proxy usesystemdefault="true" proxyaddress="[proxy address]" bypassonlocal="true" />
    </defaultProxy>
    

    Programmatically, you can set the proxy:

    http://msdn.microsoft.com/en-us/library/system.net.webproxy.aspx

    WebProxy proxyObject = new WebProxy("http://proxyserver:80/",true);
    WebRequest req = WebRequest.Create("http://www.contoso.com");
    req.Proxy = proxyObject;
    

    EDIT:
    For web browser control, try this SO post: (disclaimer – haven’t tried that)

    How to set a proxy for Webbrowser Control without effecting the SYSTEM/IE proxy

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to be able from .NET to set computer default web proxy (override
I want to set a binding. The problem is that the target is of
I want to call a web service method in javascript. (asp.net 3.5) I have
I have some proxy settings that I only occasionally want to turn on, so
I want to set up an FTP connection using a proxy server with Apache's
I'm essentially trying to make a DNS proxy application using Qt4. If I set
I have set up a pass through proxy service in WSO2 ESB which connects
I've got a set of static files I want to serve. They're all available
Is it possible, that Spring.Net Aspects don't work with Asp.Net Controller? I want to
My current set up is an ASMX web service that has an Item object,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.