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

IotHubClientTransportSettings.Proxy 属性

定义

将用于使用 AMQP、MQTT 的 Web 套接字连接或使用 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 的代理返回设备。 IotHubDeviceClient GetDeviceClient() { var proxy = new WebProxy("localhost", "8888"); var mqttSettings = new IotHubClientMqttSettings(IotHubClientTransportProtocol.WebSocket) { // Specify the WebProxy to be used for the connection Proxy = proxy, }; var fileUploadSettings = new IotHubClientHttpSettings { // Also configure the proxy for file uploads. Proxy = proxy, }; var options = new IotHubClientOptions(mqttSettings) { FileUploadTransportSettings = fileUploadSettings, }; return new IotHubDeviceClient("a connection string", options); }

注解

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

适用于