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

MqttClientConnectedEventArgs.cs 548 B

1234567891011121314151617
  1. using System;
  2. namespace MQTTnet.Core.Adapter
  3. {
  4. public class MqttClientConnectedEventArgs : EventArgs
  5. {
  6. public MqttClientConnectedEventArgs(string identifier, IMqttCommunicationAdapter clientAdapter)
  7. {
  8. Identifier = identifier ?? throw new ArgumentNullException(nameof(identifier));
  9. ClientAdapter = clientAdapter ?? throw new ArgumentNullException(nameof(clientAdapter));
  10. }
  11. public string Identifier { get; }
  12. public IMqttCommunicationAdapter ClientAdapter { get; }
  13. }
  14. }