Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

MqttClientCredentials.cs 199 B

123456789
  1. namespace MQTTnet.Client
  2. {
  3. public class MqttClientCredentials : IMqttClientCredentials
  4. {
  5. public string Username { get; set; }
  6. public string Password { get; set; }
  7. }
  8. }