コード例 #1
0
ファイル: Restrict.cs プロジェクト: chickenlegs0/Luka
 public RestrictAttribute(Delegate method, RestrictDisplay display)
 {
     this.delegates.Add(method);
     this.display = display;
 }
コード例 #2
0
 public RestrictAttribute(Delegate method, RestrictDisplay display)
 {
     this.delegates.Add(method);
     this.display = display;
 }
コード例 #3
0
ファイル: Restrict.cs プロジェクト: chickenlegs0/Luka
 public RestrictAttribute(string methodName, RestrictDisplay display)
 {
     this.methodName = methodName;
     this.display    = display;
 }
コード例 #4
0
 public RestrictAttribute(string methodName, RestrictDisplay display)
 {
     this.methodName = methodName;
     this.display = display;
 }