您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

21 行
658 B

  1. using System;
  2. using MQTTnet.Serializer;
  3. namespace MQTTnet.Client
  4. {
  5. public interface IMqttClientOptions
  6. {
  7. string ClientId { get; }
  8. bool CleanSession { get; }
  9. IMqttClientCredentials Credentials { get; }
  10. MqttProtocolVersion ProtocolVersion { get; }
  11. IMqttClientChannelOptions ChannelOptions { get; }
  12. TimeSpan CommunicationTimeout { get; }
  13. TimeSpan KeepAlivePeriod { get; }
  14. TimeSpan? KeepAliveSendInterval { get; }
  15. MqttReceivedApplicationMessageProcessingMode ReceivedApplicationMessageProcessingMode { get; }
  16. MqttApplicationMessage WillMessage { get; }
  17. }
  18. }