You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

MqttApplicationMessageInterceptorContext.cs 437 B

123456789101112131415
  1. namespace MQTTnet.Server
  2. {
  3. public class MqttApplicationMessageInterceptorContext
  4. {
  5. public MqttApplicationMessageInterceptorContext(string clientId, MqttApplicationMessage applicationMessage)
  6. {
  7. ClientId = clientId;
  8. ApplicationMessage = applicationMessage;
  9. }
  10. public string ClientId { get; }
  11. public MqttApplicationMessage ApplicationMessage { get; set; }
  12. }
  13. }