.NET 프로그램 이 프 록 시 를 사용 하여 HTTP 요청 을 하도록 설정 합 니 다.

2407 단어 .net
코드 방식
            var defaultProxy = new WebProxy();

            defaultProxy.Address = new Uri("http://proxy:8080");

            defaultProxy.Credentials = new NetworkCredential("xxxxx", "********");

            System.Net.WebRequest.DefaultWebProxy = defaultProxy;


방식 2:프로필
  <system.net>

    <defaultProxy useDefaultCredentials="True">

      <proxy proxyaddress="http://xaproxy:8080" bypassonlocal="True"/>

    </defaultProxy>

  </system.net>

방식 3:프로필+IE 에이전트
 <system.net>

    <defaultProxy useDefaultCredentials="True">

      <proxy bypassonlocal="True" usesystemdefault="True"/>

    </defaultProxy>

  </system.net>

좋은 웹페이지 즐겨찾기