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 139 B

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