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.

IMqttPacketWithIdentifier.cs 143 B

1234567
  1. namespace MQTTnet.Core.Packets
  2. {
  3. public interface IMqttPacketWithIdentifier
  4. {
  5. ushort PacketIdentifier { get; set; }
  6. }
  7. }