Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 

16 rader
437 B

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