public void Handle(InstallCancelledEvent message)
 {
     // Show the feedback page on every cancelled install
     if (HasFeebackBeenReportedForThisMachine())
     {
         return;
     }
     RecordInstallationFeeback();
     UrlLauncher.Open(cancelledUrl);
 }
Ejemplo n.º 2
0
 public void Handle(InstallCancelledEvent message)
 {
     // Show the feedback page on every cancelled install
     RunUrlAndRecordFeedback(cancelledUrl);
 }