Example #1
0
 public void Register()
 {
     StartupManager.Register(Type, Path, Name);
 }
Example #2
0
 public void Unregister()
 {
     StartupManager.Unregister(Type, Name);
 }
Example #3
0
 public bool IsRegistered()
 {
     return(StartupManager.FindRegisteration(t1 => t1.Equals(this)) != null);
 }