Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 

10 rader
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. }