Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 

18 řádky
520 B

  1. using System;
  2. namespace MQTTnet
  3. {
  4. public sealed class MqttApplicationMessageReceivedEventArgs : EventArgs
  5. {
  6. public MqttApplicationMessageReceivedEventArgs(string clientId, MqttApplicationMessage applicationMessage)
  7. {
  8. ClientId = clientId;
  9. ApplicationMessage = applicationMessage ?? throw new ArgumentNullException(nameof(applicationMessage));
  10. }
  11. public string ClientId { get; }
  12. public MqttApplicationMessage ApplicationMessage { get; }
  13. }
  14. }