public ExportCompleteArgs(DateTime timeStart, DateTime timeEnd, MySqlBackup.ProcessEndType endType, Exception exception)
 {
     _completionType = endType;
     _timeStart = timeStart;
     _timeEnd = timeEnd;
     _timeUsed = timeStart - timeEnd;
     _exception = exception;
 }
Exemple #2
0
 public ExportCompleteArgs(DateTime timeStart, DateTime timeEnd, MySqlBackup.ProcessEndType endType, Exception exception)
 {
     _completionType = endType;
     _timeStart      = timeStart;
     _timeEnd        = timeEnd;
     _timeUsed       = timeEnd - timeStart;
     _exception      = exception;
 }
Exemple #3
0
 public ExportCompleteArgs(DateTime timeStart, DateTime timeEnd, MySqlBackup.ProcessEndType endType,
                           Exception exception)
 {
     CompletionType = endType;
     TimeStart      = timeStart;
     TimeEnd        = timeEnd;
     TimeUsed       = timeStart - timeEnd;
     LastError      = exception;
 }