IotHubServiceClientOptions.Proxy Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Proxy web qui sera utilisé pour se connecter à IoT Hub lors de l’utilisation du protocole HTTP.
public System.Net.IWebProxy Proxy { get; set; }
member this.Proxy : System.Net.IWebProxy with get, set
Public Property Proxy As IWebProxy
Valeur de propriété
Exemples
Pour définir un proxy, vous devez instancier un instance de la WebProxy classe ou de toute classe dérivée de IWebProxy.
L’extrait de code ci-dessous montre une méthode qui retourne un appareil à l’aide d’un proxy qui se connecte à localhost sur le port 8888.
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);
}
Remarques
Si vous souhaitez ignorer les paramètres de proxy spécifiés par le système d’exploitation, définissez cette valeur sur GetEmptyWebProxy().
S’applique à
Azure SDK for .NET