Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

IMqttServerAdapter.cs 276 B

1234567891011121314
  1. using System;
  2. using MQTTnet.Core.Server;
  3. namespace MQTTnet.Core.Adapter
  4. {
  5. public interface IMqttServerAdapter
  6. {
  7. event EventHandler<MqttClientConnectedEventArgs> ClientConnected;
  8. void Start(MqttServerOptions options);
  9. void Stop();
  10. }
  11. }