Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 

27 linhas
899 B

  1. using System;
  2. namespace MQTTnet.Packets
  3. {
  4. public static class MqttPacketExtensions
  5. {
  6. public static TResponsePacket CreateResponse<TResponsePacket>(this MqttBasePacket packet)
  7. {
  8. if (packet == null) throw new ArgumentNullException(nameof(packet));
  9. var responsePacket = Activator.CreateInstance<TResponsePacket>();
  10. if (responsePacket is IMqttPacketWithIdentifier responsePacketWithIdentifier)
  11. {
  12. if (!(packet is IMqttPacketWithIdentifier requestPacketWithIdentifier))
  13. {
  14. throw new InvalidOperationException("Response packet has PacketIdentifier but request packet does not.");
  15. }
  16. responsePacketWithIdentifier.PacketIdentifier = requestPacketWithIdentifier.PacketIdentifier;
  17. }
  18. return responsePacket;
  19. }
  20. }
  21. }