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

IMqttClientOptions.cs 507 B

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