You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

MqttClientConnectionContextFactory.cs 1.1 KiB

12345678910111213141516171819202122232425262728293031323334
  1. using System;
  2. using System.Net;
  3. using MQTTnet.Adapter;
  4. using MQTTnet.AspNetCore.Client.Tcp;
  5. using MQTTnet.Client;
  6. using MQTTnet.Diagnostics;
  7. using MQTTnet.Serializer;
  8. namespace MQTTnet.AspNetCore.Client
  9. {
  10. public class MqttClientConnectionContextFactory : IMqttClientAdapterFactory
  11. {
  12. public IMqttChannelAdapter CreateClientAdapter(IMqttClientOptions options, IMqttNetChildLogger logger)
  13. {
  14. if (options == null) throw new ArgumentNullException(nameof(options));
  15. var serializer = new MqttPacketSerializer { ProtocolVersion = options.ProtocolVersion };
  16. switch (options.ChannelOptions)
  17. {
  18. case MqttClientTcpOptions tcpOptions:
  19. {
  20. var endpoint = new DnsEndPoint(tcpOptions.Server, tcpOptions.GetPort());
  21. var tcpConnection = new TcpConnection(endpoint);
  22. return new MqttConnectionContext(serializer, tcpConnection);
  23. }
  24. default:
  25. {
  26. throw new NotSupportedException();
  27. }
  28. }
  29. }
  30. }
  31. }