25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

14 satır
355 B

  1. using System;
  2. namespace MQTTnet.Extensions.ManagedClient
  3. {
  4. public class ManagedProcessFailedEventArgs : EventArgs
  5. {
  6. public ManagedProcessFailedEventArgs(Exception exception)
  7. {
  8. Exception = exception ?? throw new ArgumentNullException(nameof(exception));
  9. }
  10. public Exception Exception { get; }
  11. }
  12. }