コード例 #1
0
 /// <summary>
 /// Checks if need to call the <see cref="IClientHelper.NotifyResultsIncomingStarted"/>
 /// </summary>
 private void checkResultIncomingStarted()
 {
     // test to see if need to call
     if (notifyResultIncomingStarted)
     {
         // make the call
         concreteClient.NotifyResultsIncomingStarted();
         // mark as called
         notifyResultIncomingStarted = false;
     }
 }
コード例 #2
0
 /// <summary>
 /// Called by the client before the results starts to arrive.
 /// </summary>
 public virtual void NotifyResultsIncomingStarted()
 {
     helper.NotifyResultsIncomingStarted();
 }