您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

16 行
321 B

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