25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

18 lines
532 B

  1. using System;
  2. namespace MQTTnet.Core.Server
  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. }