Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

IMqttPacketSerializer.cs 418 B

123456789101112131415
  1. using System.Threading.Tasks;
  2. using MQTTnet.Core.Channel;
  3. using MQTTnet.Core.Packets;
  4. namespace MQTTnet.Core.Serializer
  5. {
  6. public interface IMqttPacketSerializer
  7. {
  8. MqttProtocolVersion ProtocolVersion { get; set; }
  9. Task SerializeAsync(MqttBasePacket mqttPacket, IMqttCommunicationChannel destination);
  10. Task<MqttBasePacket> DeserializeAsync(IMqttCommunicationChannel source);
  11. }
  12. }