Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- using System;
- using MQTTnet.Serializer;
-
- namespace MQTTnet.Client
- {
- public interface IMqttClientOptions
- {
- string ClientId { get; }
- bool CleanSession { get; }
- IMqttClientCredentials Credentials { get; }
- MqttProtocolVersion ProtocolVersion { get; }
- IMqttClientChannelOptions ChannelOptions { get; }
-
- TimeSpan CommunicationTimeout { get; }
- TimeSpan KeepAlivePeriod { get; }
- TimeSpan? KeepAliveSendInterval { get; }
- MqttReceivedApplicationMessageProcessingMode ReceivedApplicationMessageProcessingMode { get; }
-
- MqttApplicationMessage WillMessage { get; }
- }
- }
|