コード例 #1
0
 /// <summary>
 /// Acquisition has just completed
 /// </summary>
 public virtual void PostAcquisition()
 {
     if (_resultsSuccess && RefResults != null)
     {
         RefResults.ProcessResults();
     }
     ImageOwner = null;
 }
コード例 #2
0
 /// <summary>
 /// Clear results and initialize the success to false;
 /// </summary>
 public void ResetResults()
 {
     ResultsError   = string.Empty;
     ResultsSuccess = false;
     if (RefResults != null)
     {
         RefResults.Reset();
     }
 }