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