Exemple #1
0
 public void uploadResults()
 {
     foreach (KeyValuePair <int, IRecognitionWorker> entry in workers)
     {
         IRecognitionWorker worker = entry.Value;
         worker.uploadResult();
     }
 }
Exemple #2
0
 public void doRecognition()
 {
     foreach (KeyValuePair <int, IRecognitionWorker> entry in workers)
     {
         IRecognitionWorker worker = entry.Value;
         if (worker.proceedRecord(this.abbyyRs))
         {
             recognizedContent++;
         }
     }
 }