public Task <BatchResultList> GetBatchResultAsync(BatchInfoResult batchInfo, CancellationToken token)
 {
     if (batchInfo == null)
     {
         throw new ArgumentNullException("batchInfo");
     }
     return(GetBatchResultAsync(batchInfo.Id, batchInfo.JobId, token));
 }
Esempio n. 2
0
 public async Task <BatchResultList> GetBatchResultAsync(BatchInfoResult batchInfo)
 {
     if (batchInfo == null)
     {
         throw new ArgumentNullException("batchInfo");
     }
     return(await GetBatchResultAsync(batchInfo.Id, batchInfo.JobId));
 }
Esempio n. 3
0
 public Task <BatchResultList> GetBatchResultAsync(BatchInfoResult batchInfo)
 {
     if (batchInfo == null)
     {
         throw new ArgumentNullException(nameof(batchInfo));
     }
     return(GetBatchResultAsync(batchInfo.Id ?? string.Empty, batchInfo.JobId ?? string.Empty));
 }