Example #1
0
 public KeyboardHook(HookMethod hooker)
     : base(hooker, HookType.Keyboard)
 {
     KeysDown = new HashSet<Keys>();
 }
Example #2
0
 public WindowsHook(HookMethod hooker, HookType type)
 {
     this.hooker = hooker;
     this.type = type;
 }
Example #3
0
 public MessageHook(HookMethod hooker)
     : base(hooker, HookType.Message)
 {
 }
Example #4
0
 public MouseHook(HookMethod hooker)
     : base(hooker, HookType.Mouse)
 {
 }
Example #5
0
 public WindowsHook(HookMethod hooker, HookType type)
 {
     this.hooker = hooker;
     this.type   = type;
 }
Example #6
0
 public MessageHook(HookMethod hooker)
     : base(hooker, HookType.Message)
 {
 }