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.
 
 
 
 

16 lines
355 B

  1. using System.Collections.Generic;
  2. using MQTTnet.Client;
  3. using MQTTnet.Diagnostics;
  4. using MQTTnet.Diagnostics.Logger;
  5. using MQTTnet.Server;
  6. namespace MQTTnet
  7. {
  8. public interface IMqttFactory : IMqttClientFactory, IMqttServerFactory
  9. {
  10. IMqttNetLogger DefaultLogger { get; }
  11. IDictionary<object, object> Properties { get; }
  12. }
  13. }