public JobResult(List <ItemResult> itemResults, bool successful, Exception jobError, JobStats stats)
 {
     this.itemResults = itemResults;
     this.successful  = successful;
     this.jobError    = jobError;
     this.jobStats    = stats;
 }
Exemplo n.º 2
0
 public ItemEventArgs(Guid jobId, ItemResult result, JobStats jobStats)
 {
     // TODO: Complete member initialization
     this.jobId = jobId;
     this.result = result;
     this.jobStats = jobStats;
 }
 public ItemEventArgs(Guid jobId, ItemResult result, JobStats jobStats)
 {
     // TODO: Complete member initialization
     this.jobId    = jobId;
     this.result   = result;
     this.jobStats = jobStats;
 }
Exemplo n.º 4
0
 public JobResult(List<ItemResult> itemResults, bool successful, Exception jobError, JobStats stats)
 {
     this.itemResults = itemResults;
     this.successful = successful;
     this.jobError = jobError;
     this.jobStats = stats;
 }