選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 

16 行
357 B

  1. using System;
  2. using MQTTnet.Core.Server;
  3. namespace MQTTnet
  4. {
  5. public class MqttServerFactory
  6. {
  7. public MqttServer CreateMqttServer(MqttServerOptions options)
  8. {
  9. if (options == null) throw new ArgumentNullException(nameof(options));
  10. return new MqttServer(options, new MqttServerAdapter());
  11. }
  12. }
  13. }