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

1234567891011121314151617181920212223242526272829303132
  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. switch (options.ChannelOptions)
  16. {
  17. case MqttClientTcpOptions tcpOptions:
  18. {
  19. var endpoint = new DnsEndPoint(tcpOptions.Server, tcpOptions.GetPort());
  20. var tcpConnection = new TcpConnection(endpoint);
  21. return new MqttConnectionContext(new MqttPacketSerializerAdapter(options.ProtocolVersion), tcpConnection);
  22. }
  23. default:
  24. {
  25. throw new NotSupportedException();
  26. }
  27. }
  28. }
  29. }
  30. }