Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

IMqttClientOptions.cs 507 B

há 7 anos
há 7 anos
há 7 anos
há 7 anos
há 7 anos
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. }