選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 

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