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

16 行
299 B

  1. using System.Threading.Tasks;
  2. using MQTTnet.Core.Client;
  3. using System.IO;
  4. namespace MQTTnet.Core.Channel
  5. {
  6. public interface IMqttCommunicationChannel
  7. {
  8. Task ConnectAsync(MqttClientOptions options);
  9. Task DisconnectAsync();
  10. Stream Stream { get; }
  11. }
  12. }