Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 

15 lignes
419 B

  1. using System;
  2. namespace MQTTnet.Extensions.WebSocket4Net
  3. {
  4. public static class MqttFactoryExtensions
  5. {
  6. public static IMqttFactory UseWebSocket4Net(this IMqttFactory mqttFactory)
  7. {
  8. if (mqttFactory == null) throw new ArgumentNullException(nameof(mqttFactory));
  9. return mqttFactory.UseClientAdapterFactory(new WebSocket4NetMqttClientAdapterFactory());
  10. }
  11. }
  12. }