예제 #1
0
 protected void OnExecuteApp(HubCrawlApp app)
 {
     if (ExecuteApp != null)
     {
         ExecuteApp(this, new HubCrawlAppEventArgs(app));
     }
 }
예제 #2
0
 protected void ExecuteApp(HubCrawlApp app)
 {
     if (AppExecuter != null)
         AppExecuter.ExecuteApp(app);
     else System.Windows.MessageBox.Show("Executer is Null");
 }
예제 #3
0
 public HubCrawlAppEventArgs(HubCrawlApp app = null)
 {
     this.App = app;
 }
예제 #4
0
 protected void OnExecuteApp(HubCrawlApp app)
 {
     if (ExecuteApp != null)
         ExecuteApp(this, new HubCrawlAppEventArgs(app));
 }