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.
|
- using System;
- using MQTTnet.Client;
-
- namespace MQTTnet.ManagedClient
- {
- public class ManagedMqttClientOptions : IManagedMqttClientOptions
- {
- public IMqttClientOptions ClientOptions { get; set; }
-
- public TimeSpan AutoReconnectDelay { get; set; } = TimeSpan.FromSeconds(5);
-
- public IManagedMqttClientStorage Storage { get; set; }
- }
- }
|