No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

IMqttCommunicationChannel.cs 299 B

hace 7 años
hace 7 años
hace 7 años
hace 7 años
hace 7 años
hace 7 años
123456789101112131415
  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. }