다음을 통해 공유


HttpWebClientProtocol.Proxy 속성

정의

방화벽을 통해 XML Web services를 요청하기 위한 프록시 정보를 가져오거나 설정합니다.

public:
 property System::Net::IWebProxy ^ Proxy { System::Net::IWebProxy ^ get(); void set(System::Net::IWebProxy ^ value); };
[System.ComponentModel.Browsable(false)]
public System.Net.IWebProxy Proxy { get; set; }
[<System.ComponentModel.Browsable(false)>]
member this.Proxy : System.Net.IWebProxy with get, set
Public Property Proxy As IWebProxy

속성 값

IWebProxy

방화벽을 통해 요청을 하기 위한 프록시 정보를 포함하는 IWebProxy입니다. 기본값은 운영 체제 프록시 설정입니다.

특성

예제

다음 예제에서는 호출 하기 전에 다음 프록시 설정 합니다 Math XML 웹 서비스: 프록시 서버를 http://proxyserver, 프록시 포트 80과 로컬 주소에 프록시 서버에 대 한 바이패스를 합니다.

MyMath::Math^ math = gcnew MyMath::Math;

// Set the proxy server to proxyserver, set the port to 80, and specify to bypass the proxy server
// for local addresses.
IWebProxy^ proxyObject = gcnew WebProxy( "http://proxyserver:80",true );
math->Proxy = proxyObject;

// Call the Add XML Web service method.
int total = math->Add( 8, 5 );

MyMath.Math math = new MyMath.Math();

// Set the proxy server to proxyserver, set the port to 80, and specify to bypass the proxy server
// for local addresses.
IWebProxy proxyObject = new WebProxy("http://proxyserver:80", true);
math.Proxy = proxyObject;

// Call the Add XML Web service method.
int total = math.Add(8, 5);
Dim math As New MyMath.Math()

' Set the proxy server to proxyserver, set the port to 80, and specify
' to bypass the proxy server for local addresses.
Dim proxyObject As New WebProxy("http://proxyserver:80", True)
math.Proxy = proxyObject

' Call the Add XML Web service method.
Dim total As Integer = math.Add(8, 5)

설명

사용 된 Proxy 클라이언트 시스템 설정에서 하는 것 보다 다양 한 프록시 설정을 사용 해야 하는 경우 속성입니다. 사용 된 WebProxy 구현 하기 때문에 프록시 설정을 설정 하는 클래스 IWebProxy합니다.

기본 프록시 설정은 구성 파일에서 설정할 수 있습니다. 자세한 내용은 참조 하세요 Configuring Internet Applications합니다.

적용 대상

추가 정보