Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

IManagedMqttClientOptions.cs 282 B

1234567891011121314
  1. using System;
  2. using MQTTnet.Client;
  3. namespace MQTTnet.ManagedClient
  4. {
  5. public interface IManagedMqttClientOptions
  6. {
  7. IMqttClientOptions ClientOptions { get; }
  8. TimeSpan AutoReconnectDelay { get; }
  9. IManagedMqttClientStorage Storage { get; }
  10. }
  11. }