25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

MqttApplicationMessage.cs 719 B

7 yıl önce
7 yıl önce
7 yıl önce
123456789101112131415161718192021222324
  1. using System;
  2. using MQTTnet.Core.Protocol;
  3. namespace MQTTnet.Core
  4. {
  5. public sealed class MqttApplicationMessage
  6. {
  7. public MqttApplicationMessage(string topic, byte[] payload, MqttQualityOfServiceLevel qualityOfServiceLevel, bool retain)
  8. {
  9. Topic = topic ?? throw new ArgumentNullException(nameof(topic));
  10. Payload = payload ?? throw new ArgumentNullException(nameof(payload));
  11. QualityOfServiceLevel = qualityOfServiceLevel;
  12. Retain = retain;
  13. }
  14. public string Topic { get; }
  15. public byte[] Payload { get; }
  16. public MqttQualityOfServiceLevel QualityOfServiceLevel { get; }
  17. public bool Retain { get; }
  18. }
  19. }