你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

IotHubServiceClientOptions.Proxy 属性

定义

使用 HTTP 协议时将用于连接到 IoT 中心的 Web 代理。

public System.Net.IWebProxy Proxy { get; set; }
member this.Proxy : System.Net.IWebProxy with get, set
Public Property Proxy As IWebProxy

属性值

示例

若要设置代理,必须实例化 类的 WebProxy 实例或派生自 IWebProxy的任何类。 以下代码片段显示了一个方法,该方法使用连接到端口 8888 上的 localhost 的代理返回设备。 IotHubServiceClient GetServiceClient() { var proxy = new WebProxy("localhost", "8888"); var options = new IotHubServiceClientOptions { Protocol = IotHubTransportProtocol.WebSocket, // Specify the WebProxy to be used for the HTTP and web socket connections. Proxy = proxy, // Using the default HttpClient here, so the proxy for HTTP operations will be set for me. }; return new IotHubServiceClient("a connection string", options); }

注解

如果要绕过 OS 指定的代理设置,请将此项设置为 GetEmptyWebProxy()

适用于