Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 

19 linhas
505 B

  1. using System;
  2. using System.Collections.Generic;
  3. using MQTTnet.Core.Adapter;
  4. using MQTTnet.Core.Server;
  5. using MQTTnet.Implementations;
  6. namespace MQTTnet
  7. {
  8. public class MqttServerFactory : IMqttServerFactory
  9. {
  10. public IMqttServer CreateMqttServer(MqttServerOptions options)
  11. {
  12. if (options == null) throw new ArgumentNullException(nameof(options));
  13. return new MqttServer(options, new List<IMqttServerAdapter> { new MqttServerAdapter() });
  14. }
  15. }
  16. }