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

IMqttCommunicationChannel.cs 321 B

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