public UnhandledExceptionsEventArgs (Exception exception, UnhandledExceptionSource source, bool canHandle = true)
     : this(new ReadOnlyCollection<Exception>(new[] { exception }), source, canHandle)
 {}
Пример #2
0
 public UnhandledExceptionsEventArgs(Exception exception, UnhandledExceptionSource source, bool canHandle = true)
     : this(new ReadOnlyCollection <Exception>(new[] { exception }), source, canHandle)
 {
 }
 public UnhandledExceptionsEventArgs (ReadOnlyCollection<Exception> exceptions, UnhandledExceptionSource source, bool canHandle = true)
 {
     Exceptions = exceptions;
     Source = source;
     CanHandle = canHandle;
 }
Пример #4
0
 public UnhandledExceptionsEventArgs(ReadOnlyCollection <Exception> exceptions, UnhandledExceptionSource source, bool canHandle = true)
 {
     Exceptions = exceptions;
     Source     = source;
     CanHandle  = canHandle;
 }