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.
 
 
 
 

10 wiersze
192 B

  1. using System.Threading.Tasks;
  2. namespace MQTTnet.Core.Client
  3. {
  4. public interface IMqttClientQueued: IMqttClient
  5. {
  6. Task ConnectAsync(MqttClientQueuedOptions options);
  7. }
  8. }