Você não pode selecionar mais de 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.
|
- using System;
- using MQTTnet.Serializer;
-
- namespace MQTTnet.Client
- {
- public interface IMqttClientOptions
- {
- string ClientId { get; }
-
- IMqttClientCredentials Credentials { get; }
- bool CleanSession { get; }
- MqttApplicationMessage WillMessage { get; }
-
- TimeSpan CommunicationTimeout { get; }
- TimeSpan KeepAlivePeriod { get; }
- MqttProtocolVersion ProtocolVersion { get; }
-
- IMqttClientChannelOptions ChannelOptions { get; }
- }
- }
|