25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

13 satır
324 B

  1. namespace MQTTnet.Packets
  2. {
  3. public sealed class MqttUnsubAckPacket : MqttBasePacket, IMqttPacketWithIdentifier
  4. {
  5. public ushort PacketIdentifier { get; set; }
  6. public override string ToString()
  7. {
  8. return "UnsubAck: [PacketIdentifier=" + PacketIdentifier + "]";
  9. }
  10. }
  11. }