選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

IMqttClientCredentials.cs 158 B

12345678
  1. namespace MQTTnet.Core.Client
  2. {
  3. public interface IMqttClientCredentials
  4. {
  5. string Password { get; }
  6. string Username { get; }
  7. }
  8. }