25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

16 satır
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. }