25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

MqttPacketExtensions.cs 960 B

123456789101112131415161718192021222324252627
  1. using System;
  2. namespace MQTTnet.Core.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. var requestPacketWithIdentifier = packet as IMqttPacketWithIdentifier;
  13. if (requestPacketWithIdentifier == null)
  14. {
  15. throw new InvalidOperationException("Response packet has PacketIdentifier but request packet does not.");
  16. }
  17. responsePacketWithIdentifier.PacketIdentifier = requestPacketWithIdentifier.PacketIdentifier;
  18. }
  19. return responsePacket;
  20. }
  21. }
  22. }