コード例 #1
0
 public StartupInvoke(string name, StartupInvokePriority type, bool exitOnTrow = true)
 {
     this.Type        = type;
     this.Name        = name;
     this.Hided       = false;
     this.ExitOnThrow = exitOnTrow;
 }
コード例 #2
0
 public StartupInvoke(StartupInvokePriority type)
 {
     this.Hided       = true;
     this.Type        = type;
     this.ExitOnThrow = true;
 }
コード例 #3
0
ファイル: StartupInvoke.cs プロジェクト: sahlie1985/Legends
 public StartupInvoke(string name, StartupInvokePriority type)
 {
     this.Type  = type;
     this.Name  = name;
     this.Hided = false;
 }