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.

IPacketWithPacketIdentifier.cs 139 B

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