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 Web 服务之前设置以下代理设置:代理服务器到 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

可以在配置文件中设置默认代理设置。 有关详细信息,请参阅 配置 Internet 应用程序

适用于

另请参阅