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