No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 

35 líneas
1.1 KiB

  1. using System;
  2. using MQTTnet.Core.Adapter;
  3. using MQTTnet.Core.Channel;
  4. using MQTTnet.Core.Client;
  5. using MQTTnet.Core.Serializer;
  6. using MQTTnet.Implementations;
  7. namespace MQTTnet
  8. {
  9. public class MqttClientFactory
  10. {
  11. public IMqttClient CreateMqttClient(MqttClientOptions options)
  12. {
  13. if (options == null) throw new ArgumentNullException(nameof(options));
  14. return new MqttClient(options, new MqttChannelCommunicationAdapter(GetMqttCommunicationChannel(options), new MqttPacketSerializer()));
  15. }
  16. private static IMqttCommunicationChannel GetMqttCommunicationChannel(MqttClientOptions options)
  17. {
  18. switch (options.ConnectionType)
  19. {
  20. case MqttConnectionType.Tcp:
  21. case MqttConnectionType.Tls:
  22. return new MqttTcpChannel();
  23. case MqttConnectionType.Ws:
  24. case MqttConnectionType.Wss:
  25. return new MqttWebSocketChannel();
  26. default:
  27. throw new NotSupportedException();
  28. }
  29. }
  30. }
  31. }