Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

IMqttPacketWithIdentifier.cs 138 B

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