Example #1
0
 public HookKey(Body body, string key)
     : base(body)
 {
     this.Key = key.ToLower ();
 }
Example #2
0
 public HookKey(Body body, string key) : base(body)
 {
     this.Key = key.ToLower();
 }
Example #3
0
 protected HookBase(Body body)
 {
     this.body = body;
 }
Example #4
0
 public PositiveClause(IAtom head, Body body)
 {
     this.head = head;
     this.body = body;
 }