選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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. }