Nevar pievienot vairāk kā 25 tēmas
Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
|
- using System;
- using System.Collections.Generic;
- using MQTTnet.Core.Adapter;
- using MQTTnet.Core.Server;
- using MQTTnet.Implementations;
-
- namespace MQTTnet
- {
- public class MqttServerFactory
- {
- public MqttServer CreateMqttServer(MqttServerOptions options)
- {
- if (options == null) throw new ArgumentNullException(nameof(options));
-
- return new MqttServer(options, new List<IMqttServerAdapter> { new MqttServerAdapter() });
- }
- }
- }
|