Example #1
0
 public IoCFunction(IoState state, string name, IoMethodFunc func)
 {
     isActivatable = true;
     this.state = state;
     createSlots();
     createProtos();
     uniqueId = 0;
     funcName = name;
     this.func = func;
 }
Example #2
0
 public IoCFunction(IoState state, string name, IoMethodFunc func)
 {
     isActivatable = true;
     this.state    = state;
     createSlots();
     createProtos();
     uniqueId  = 0;
     funcName  = name;
     this.func = func;
 }
Example #3
0
 public IoCFunction(string name, IoMethodFunc func)
     : this(null, name, func)
 {
 }
Example #4
0
 public IoCFunction(string name, IoMethodFunc func) : this(null, name, func)
 {
 }