Exemplo n.º 1
0
 public ExceptionInfoMinified(ExceptionInfo exception)
 {
     m = exception.Message;
     s = exception.Source;
     t = exception.StackTrace;
     i = exception.InnerException != null ? new ExceptionInfoMinified(exception.InnerException) : null;
 }
Exemplo n.º 2
0
 public WardenCheckResultMinified(WardenCheckResult check)
 {
     v = check.IsValid;
     r = new WatcherCheckResultMinified(check.WatcherCheckResult);
     s = check.StartedAt.Ticks;
     c = check.CompletedAt.Ticks;
     t = check.ExecutionTime.Ticks;
     e = check.Exception != null ? new ExceptionInfoMinified(check.Exception) : null;
 }