Beispiel #1
0
 public ErrorReport(string id, DateTimeOffset appStartTime, DateTimeOffset appErrorTime, Models.Exception exception, Device device, string threadName)
 {
     Id           = id;
     AppStartTime = appStartTime;
     AppErrorTime = appErrorTime;
     Exception    = exception;
     Device       = device;
     ThreadName   = threadName;
 }
 public ErrorReport(string id, DateTimeOffset appStartTime, DateTimeOffset appErrorTime, Models.Exception exception, int processId, string reporterKey, string reporterSignal, bool isAppKill)
 {
     Id             = id;
     AppStartTime   = appStartTime;
     AppErrorTime   = appErrorTime;
     Exception      = exception;
     ProcessId      = processId;
     ReporterKey    = reporterKey;
     ReporterSignal = reporterSignal;
     IsAppKill      = isAppKill;
 }