You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

MqttPacketExtensions.cs 899 B

преди 7 години
1234567891011121314151617181920212223242526
  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. }