예제 #1
0
 void ButtonStopClicked(object sender, EventArgs e)
 {
     if (AsyncOperation != null)
     {
         AsyncOperation.Cancel();
     }
 }
예제 #2
0
 void OnStopClicked(object sender, EventArgs args)
 {
     if (runningTestOperation != null)
     {
         runningTestOperation.Cancel();
     }
 }
예제 #3
0
 void StopRunningTests()
 {
     if (runningTestOperation != null)
     {
         runningTestOperation.Cancel();
     }
 }
예제 #4
0
 void OnCancelClicked(object sender, EventArgs e)
 {
     AsyncOperation.Cancel();
 }
예제 #5
0
 private void cancelCommand_Executed(object sender, EventArgs e)
 {
     _asyncOperation.Cancel();
 }
 void OnCancelRequested(IProgressMonitor sender)
 {
     AsyncOperation.Cancel();
 }