Example #1
0
 public void UnloadingAppDomainHandler(object o, PlugLoadEventArgs a)
 {
 }
Example #2
0
 public void PlugLoaded(object o, PlugLoadEventArgs a)
 {
     Console.WriteLine("Plug Loaded : " + a.PlugName);
 }
Example #3
0
 public void PlugLoadException(object o, PlugLoadEventArgs a)
 {
     Console.WriteLine("Exception Loading Plug... \n" + a.ExceptionInfo);
 }
Example #4
0
 public void LoadingAppDomain(object o, PlugLoadEventArgs a)
 {
     Console.WriteLine("\nLoading assembly : " + a.AssemblyName + " to App Domain " + a.AppDomainName);
 }
Example #5
0
 public void LoadingPlug(object o, PlugLoadEventArgs a)
 {
     Console.WriteLine("Loading Plug : " + a.PlugName);
 }
Example #6
0
 public void PlugLoadException(object o, PlugLoadEventArgs a)
 {
     this.GetOutputWindow().WriteLine("Exception Loading Plug... \n" + a.ExceptionInfo);
 }
Example #7
0
 public void AppDomainUnloaded(object o, PlugLoadEventArgs a)
 {
     Console.WriteLine("App Domain Unloaded : " + a.AppDomainName);
 }
Example #8
0
 public void PlugLoaded(object o, PlugLoadEventArgs a)
 {
     this.GetOutputWindow().WriteLine("Plug Loaded : " + a.PlugName);
 }
Example #9
0
 public void LoadingPlug(object o, PlugLoadEventArgs a)
 {
     this.GetOutputWindow().WriteLine("Loading Plug : " + a.PlugName);
 }
Example #10
0
 public void LoadingAppDomain(object o, PlugLoadEventArgs a)
 {
     this.GetOutputWindow().WriteLine("\nLoading assembly : " + a.AssemblyName + " to App Domain " + a.AppDomainName);
 }
Example #11
0
 public void AppDomainUnloaded(object o, PlugLoadEventArgs a)
 {
     this.GetOutputWindow().WriteLine("App Domain Unloaded : " + a.AppDomainName);
 }
Example #12
0
 public void AppDomainLoaded(object o, PlugLoadEventArgs a)
 {
     this.GetOutputWindow().WriteLine("App Domain Loaded : " + a.AppDomainName);
     this.showHidePanelAppDom.FilterListBox.AddListItem(a.AppDomainName);
 }