다음을 통해 공유


GlobalProxySelection 클래스

참고: 이 클래스는 이제 사용되지 않습니다.

모든 HTTP 요청에 대한 글로벌 기본 프록시 인스턴스를 포함합니다.

네임스페이스: System.Net
어셈블리: System(system.dll)

구문

‘선언
<ObsoleteAttribute("This class has been deprecated. Please use WebRequest.DefaultWebProxy instead to access and set the global default proxy. Use 'null' instead of GetEmptyWebProxy. https://go.microsoft.com/fwlink/?linkid=14202")> _
Public Class GlobalProxySelection
‘사용 방법
Dim instance As GlobalProxySelection
[ObsoleteAttribute("This class has been deprecated. Please use WebRequest.DefaultWebProxy instead to access and set the global default proxy. Use \'null\' instead of GetEmptyWebProxy. https://go.microsoft.com/fwlink/?linkid=14202")] 
public class GlobalProxySelection
[ObsoleteAttribute(L"This class has been deprecated. Please use WebRequest.DefaultWebProxy instead to access and set the global default proxy. Use \'null\' instead of GetEmptyWebProxy. https://go.microsoft.com/fwlink/?linkid=14202")] 
public ref class GlobalProxySelection
/** @attribute ObsoleteAttribute("This class has been deprecated. Please use WebRequest.DefaultWebProxy instead to access and set the global default proxy. Use \'null\' instead of GetEmptyWebProxy. https://go.microsoft.com/fwlink/?linkid=14202") */ 
public class GlobalProxySelection
ObsoleteAttribute("This class has been deprecated. Please use WebRequest.DefaultWebProxy instead to access and set the global default proxy. Use \u0027null\u0027 instead of GetEmptyWebProxy. https://go.microsoft.com/fwlink/?linkid=14202") 
public class GlobalProxySelection

설명

GlobalProxySelectionWebRequest가 로컬 네트워크를 넘어 인터넷 사이트에 접속하는 데 사용하는 기본 프록시에 대한 프록시 설정을 저장합니다. 기본 프록시 설정은 글로벌 또는 응용 프로그램 구성 파일에서 초기화되며 개별 요청에 대해 재정의될 수 있습니다. 또한 HttpWebRequest.Proxy 속성을 GetEmptyWebProxy 메서드의 반환 값으로 설정하여 기본 프록시 설정을 사용하지 않도록 설정할 수 있습니다.

GlobalProxySelection에 저장된 프록시 설정은 프록시를 지원하며 해당 Proxy 속성 값이 Null 참조(Visual Basic의 경우 Nothing)(기본값)로 설정된 WebRequest 파생 개체에서 사용됩니다. 프록시는 현재 FtpWebRequest, HttpWebRequestWebClient에서 지원합니다.

참고   요청 후에 GlobalProxySelection을 변경하면 WebRequest에 변경 내용이 반영되지 않습니다.

예제

다음 코드 예제에서는 포트 80의 "webproxy"라는 HTTP 프록시에 대해 GlobalProxySelection을 설정합니다.

Dim proxyURI As New Uri("http://webproxy:80")
GlobalProxySelection.Select = New WebProxy(proxyURI)
Uri proxyURI = new Uri("http://webproxy:80");
 GlobalProxySelection.Select = new WebProxy(proxyURI);
Uri^ proxyURI = gcnew Uri( "http://webproxy:80" );
GlobalProxySelection::Select = gcnew WebProxy( proxyURI );
Uri proxyURI = new Uri("http://webproxy:80");
GlobalProxySelection.set_Select(new WebProxy(proxyURI));

상속 계층 구조

System.Object
  System.Net.GlobalProxySelection

스레드로부터의 안전성

이 형식의 모든 public static(Visual Basic의 경우 Shared) 멤버는 스레드로부터 안전합니다. 인터페이스 멤버는 스레드로부터 안전하지 않습니다.

플랫폼

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

.NET Framework에서 모든 플래폼의 모든 버전을 지원하지는 않습니다. 지원되는 버전의 목록은 시스템 요구 사항을 참조하십시오.

버전 정보

.NET Framework

1.0, 1.1에서 지원
2.0에서 사용되지 않음(컴파일러 경고)

.NET Compact Framework

1.0에서 지원
2.0에서 사용되지 않음(컴파일러 경고)

참고 항목

참조

GlobalProxySelection 멤버
System.Net 네임스페이스

기타 리소스

defaultProxy 요소(네트워크 설정)